This repository was archived by the owner on May 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ class PrivateConstants:
70
70
SYSEX_REALTIME = 0x7F # MIDI Reserved for realtime messages
71
71
72
72
# reserved for PyMata
73
- PYMATA_EXPRESS_THREADED_VERSION = "1.11 "
73
+ PYMATA_EXPRESS_THREADED_VERSION = "1.12 "
74
74
75
75
# matching FirmataExpress Version Number
76
76
FIRMATA_EXPRESS_VERSION = "1.2"
Original file line number Diff line number Diff line change @@ -396,6 +396,9 @@ def _find_arduino(self):
396
396
self .using_firmata_express = True
397
397
self .com_port = self .serial_port
398
398
return
399
+ else :
400
+ raise RuntimeError (f'arduino_instance_id does not match the '
401
+ f'value on the board.' )
399
402
except KeyboardInterrupt :
400
403
raise RuntimeError ('User Hit Control-C' )
401
404
Original file line number Diff line number Diff line change 11
11
packages = ['pymata4' ],
12
12
install_requires = ['pyserial' ],
13
13
14
- version = '1.11 ' ,
14
+ version = '1.12 ' ,
15
15
description = "A Python Protocol Abstraction Library For Arduino Firmata" ,
16
16
long_description = long_description ,
17
17
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments