.
This commit is contained in:
16
listen-python
Normal file
16
listen-python
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import serial, string
|
||||
|
||||
output = " "
|
||||
ser = serial.Serial('/dev/ttyUSB0', 9600, 8, 'N', 1, timeout=1)
|
||||
while True:
|
||||
while output != "":
|
||||
output = ser.read(1)
|
||||
print len(output)
|
||||
try:
|
||||
print int(output)
|
||||
except ValueError:
|
||||
print ":".join("{:02x}".format(ord(c)) for c in output)
|
||||
print output
|
||||
output = " "
|
||||
Reference in New Issue
Block a user