Make nextion.py compatible with pyserial < v3

This commit is contained in:
phl0
2016-11-07 10:51:53 +01:00
parent 29a8f7fd94
commit b8f8fa89c0

View File

@@ -111,8 +111,12 @@ if __name__ == "__main__":
except serial.serialutil.SerialException:
print 'could not open serial device ' + sys.argv[2]
exit(1)
if not ser.is_open:
ser.open()
if (serial.VERSION <= "3.0"):
if not ser.isOpen():
ser.open()
else:
if not ser.is_open:
ser.open()
checkModel = None
if len(sys.argv) == 4: