Last active
August 29, 2015 14:02
-
-
Save joegle/8280674a7860e0fcf9a6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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