merge #5
9
main.py
9
main.py
@ -109,7 +109,14 @@ def OpenShifter():
|
|||||||
ser.write('o')
|
ser.write('o')
|
||||||
ser.close()
|
ser.close()
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
print('[ Error ] Can not connect to Arduino at /dev/ttyUSB1 ..')
|
print('[ Error ] Can not connect to Arduino at /dev/ttyUSB0 ..')
|
||||||
|
try:
|
||||||
|
ser = serial.Serial('/dev/ttyUSB1',9600)
|
||||||
|
ser.open()
|
||||||
|
ser.write('o')
|
||||||
|
ser.close()
|
||||||
|
except:
|
||||||
|
print('[ Error ] Can not connect to Arduino at /dev/ttyUSB1 ..')
|
||||||
|
|
||||||
def loadNames():
|
def loadNames():
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user