Last active
June 7, 2018 03:45
-
-
Save exp0nge/ae2f3862ff2b2da94bf9c0d5b589a062 to your computer and use it in GitHub Desktop.
Sensing the World in All Three Dimensions: read/write Infineon sensor data using Serial
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 | |
ser = serial.Serial('/dev/ttyACM0') | |
with open('log.txt', 'w') as log_file: | |
while True: | |
msg = '' | |
c = ser.read(1).decode('utf-8') | |
while c != '\n': | |
c = ser.read(1).decode('utf-8') | |
c = ser.read(1).decode('utf-8') | |
while c != '\n': | |
msg += c | |
c = ser.read(1).decode('utf-8') | |
print('Writing', msg) | |
log_file.write(msg + '\n') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment