Skip to content

Commit

Permalink
Addresses issue #90
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYsLab committed Nov 6, 2024
1 parent f5a7fe6 commit 8247af7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ find = {} # Scan the project directory with the default parameters

[project]
name = "telemetrix"
version = "1.41"
version = "1.42"
authors = [
{ name="Alan Yorinks", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion telemetrix/private_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class PrivateConstants:
FEATURES = 20
DEBUG_PRINT = 99

TELEMETRIX_VERSION = "1.41"
TELEMETRIX_VERSION = "1.42"

# reporting control
REPORTING_DISABLE_ALL = 0
Expand Down
2 changes: 2 additions & 0 deletions telemetrix/telemetrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,8 @@ def _find_arduino(self):
self.serial_port.reset_input_buffer()

self._get_arduino_id()
while self.reported_arduino_id is None:
time.sleep(.2)
if self.reported_arduino_id != self.arduino_instance_id:
continue
else:
Expand Down

0 comments on commit 8247af7

Please sign in to comment.