mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-23 00:35:53 +08:00
Make nextion.py compatible with pyserial < v3
This commit is contained in:
@@ -111,6 +111,10 @@ if __name__ == "__main__":
|
|||||||
except serial.serialutil.SerialException:
|
except serial.serialutil.SerialException:
|
||||||
print 'could not open serial device ' + sys.argv[2]
|
print 'could not open serial device ' + sys.argv[2]
|
||||||
exit(1)
|
exit(1)
|
||||||
|
if (serial.VERSION <= "3.0"):
|
||||||
|
if not ser.isOpen():
|
||||||
|
ser.open()
|
||||||
|
else:
|
||||||
if not ser.is_open:
|
if not ser.is_open:
|
||||||
ser.open()
|
ser.open()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user