merge #5

Merged
Hesham merged 8 commits from screen-shot-mod into master 2018-12-04 18:55:02 +01:00
Showing only changes of commit ef8332f253 - Show all commits

View File

@ -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():