mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2025-12-06 05:32:00 +01:00
Make nextion.py compatible with pyserial < v3
This commit is contained in:
parent
29a8f7fd94
commit
b8f8fa89c0
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue