Run the debug script
This commit is contained in:
parent
35b67f1815
commit
95cde2907a
|
@ -0,0 +1 @@
|
|||
env
|
File diff suppressed because it is too large
Load Diff
|
@ -5,20 +5,21 @@ import serial.tools.list_ports
|
|||
ports = serial.tools.list_ports.comports()
|
||||
port = ''
|
||||
for p in ports:
|
||||
print p
|
||||
if "Arduino" in p.description:
|
||||
print "This is an Arduino!"
|
||||
print(p)
|
||||
if "Arduino" in p.description or 'ACM0' in p.description:
|
||||
print("This is an Arduino!")
|
||||
port = p.device
|
||||
break
|
||||
|
||||
if p is '':
|
||||
if port == '':
|
||||
print("Arduino is not connected")
|
||||
exit(1)
|
||||
|
||||
arduino = serial.Serial(port=port, baudrate=57600, timeout=.05)
|
||||
time.sleep(1)
|
||||
|
||||
while arduino.in_waiting: # Or: while ser.inWaiting():
|
||||
print arduino.readline()
|
||||
with open('debug.csv', 'w') as file:
|
||||
while True: # Or: while ser.inWaiting():
|
||||
file.write(arduino.readline().decode())
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue