From fce3b4c273bd85d1bb3dbf7e3582f47ed076da0f Mon Sep 17 00:00:00 2001 From: Andrew Kay Date: Wed, 10 Mar 2021 20:47:02 -0600 Subject: [PATCH] Correct pycoax example in documentation --- pycoax/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pycoax/README.md b/pycoax/README.md index 877259c..3d177a2 100644 --- a/pycoax/README.md +++ b/pycoax/README.md @@ -27,9 +27,7 @@ with Serial('/dev/ttyACM0', 115200) as serial: # Initialize and reset the interface. interface = SerialInterface(serial) - firmware_version = interface.reset() - - print(f'Firmware version is {firmware_version}') + interface.reset() # Wait for a terminal to attach... poll_response = None