Skip to content

Commit

Permalink
Re-enabled Board LED support
Browse files Browse the repository at this point in the history
  • Loading branch information
MrYsLab committed Jul 2, 2022
1 parent 57d6ea7 commit f87058c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
packages=['telemetrix_rpi_pico'],
install_requires=['pyserial'],

version='1.2',
version='1.3',
description="Remotely Control And Monitor A Raspberry Pi Pico",
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion telemetrix_rpi_pico/private_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class PrivateConstants:

DEBUG_PRINT = 99

TELEMETRIX_VERSION = "1.1"
TELEMETRIX_VERSION = "1.3"

# reporting control
REPORTING_DISABLE_ALL = 0
Expand Down
2 changes: 1 addition & 1 deletion telemetrix_rpi_pico/telemetrix_rpi_pico.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def __init__(self, com_port=None, pico_instance_id=None,
range(23)}

# skip over unavailable pins
for pin in range(26, 29):
for pin in range(25, 29):
self.pico_pins[pin] = PrivateConstants.AT_MODE_NOT_SET

# creating a list of available sda and scl pins for i2c. If assigned the pins
Expand Down

0 comments on commit f87058c

Please sign in to comment.