Exception handle
This commit is contained in:
parent
3660a2e9eb
commit
ef8332f253
7
main.py
7
main.py
@ -109,6 +109,13 @@ def OpenShifter():
|
||||
ser.write('o')
|
||||
ser.close()
|
||||
except Exception as ex:
|
||||
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():
|
||||
|
Loading…
Reference in New Issue
Block a user