Skip to content

Instantly share code, notes, and snippets.

@joegle
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joegle/8280674a7860e0fcf9a6 to your computer and use it in GitHub Desktop.
Save joegle/8280674a7860e0fcf9a6 to your computer and use it in GitHub Desktop.
import serial
stream = serial.Serial("/dev/ttyUSB0", 115200)
rr_intervals = []
while True:
raw_line = stream.readline()
beat_time = int(str(raw_line))
rr_intervals.append(beat_time)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment