Skip to content

Instantly share code, notes, and snippets.

@exp0nge
Last active June 7, 2018 03:45
Show Gist options
  • Save exp0nge/ae2f3862ff2b2da94bf9c0d5b589a062 to your computer and use it in GitHub Desktop.
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
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