Skip to content

Instantly share code, notes, and snippets.

@romilly
Last active May 22, 2019 15:03
Show Gist options
  • Save romilly/2d7ed765e119e215b4667b583456a09f to your computer and use it in GitHub Desktop.
Save romilly/2d7ed765e119e215b4667b583456a09f to your computer and use it in GitHub Desktop.
Real and print lines from a serial input
import serial
with serial.Serial('/dev/ttyACM0', 9600, timeout=10) as ser:
while True:
print(ser.readline())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment