adafruit-circuitpython-pcf8575 1.0.4__py3-none-any.whl → 1.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {adafruit_circuitpython_pcf8575-1.0.4.dist-info → adafruit_circuitpython_pcf8575-1.0.6.dist-info}/METADATA +2 -2
- adafruit_circuitpython_pcf8575-1.0.6.dist-info/RECORD +6 -0
- {adafruit_circuitpython_pcf8575-1.0.4.dist-info → adafruit_circuitpython_pcf8575-1.0.6.dist-info}/WHEEL +1 -1
- adafruit_pcf8575.py +1 -1
- adafruit_circuitpython_pcf8575-1.0.4.dist-info/RECORD +0 -6
- {adafruit_circuitpython_pcf8575-1.0.4.dist-info → adafruit_circuitpython_pcf8575-1.0.6.dist-info}/LICENSE +0 -0
- {adafruit_circuitpython_pcf8575-1.0.4.dist-info → adafruit_circuitpython_pcf8575-1.0.6.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: adafruit-circuitpython-pcf8575
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.6
|
4
4
|
Summary: CircuitPython library for Adafruit PCF8575 GPIO expander
|
5
5
|
Author-email: Adafruit Industries <circuitpython@adafruit.com>
|
6
6
|
License: MIT
|
@@ -103,7 +103,7 @@ following command to install:
|
|
103
103
|
|
104
104
|
.. code-block:: shell
|
105
105
|
|
106
|
-
circup install
|
106
|
+
circup install adafruit_pcf8575
|
107
107
|
|
108
108
|
Or the following command to update an existing version:
|
109
109
|
|
@@ -0,0 +1,6 @@
|
|
1
|
+
adafruit_pcf8575.py,sha256=xWKNbeZgbbC3YOpmgLPkJgb8Z6nsd1J14Lx4c0hPJB0,6971
|
2
|
+
adafruit_circuitpython_pcf8575-1.0.6.dist-info/LICENSE,sha256=ScTVWEI1T6rq1ZhQw1RqjeGqtXlQhEjsrf0eu0UplE0,1098
|
3
|
+
adafruit_circuitpython_pcf8575-1.0.6.dist-info/METADATA,sha256=r05KGbVWYUUWdZDa4OGYjk5Ma2wwiDXAPYKWXzdLkNA,4164
|
4
|
+
adafruit_circuitpython_pcf8575-1.0.6.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
5
|
+
adafruit_circuitpython_pcf8575-1.0.6.dist-info/top_level.txt,sha256=ljpqZNSdBL_6xWXBRvpa7FbAvcR0pYtl8HaTB5rAthk,17
|
6
|
+
adafruit_circuitpython_pcf8575-1.0.6.dist-info/RECORD,,
|
adafruit_pcf8575.py
CHANGED
@@ -37,7 +37,7 @@ from adafruit_bus_device.i2c_device import I2CDevice
|
|
37
37
|
from micropython import const
|
38
38
|
import digitalio
|
39
39
|
|
40
|
-
__version__ = "1.0.
|
40
|
+
__version__ = "1.0.6"
|
41
41
|
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_PCF8575.git"
|
42
42
|
|
43
43
|
PCF8575_I2CADDR_DEFAULT: int = const(0x20) # Default I2C address
|
@@ -1,6 +0,0 @@
|
|
1
|
-
adafruit_pcf8575.py,sha256=pimvLTORtcB33yWoXp3cf2dtqOlZouyJWIYILwsH0_M,6971
|
2
|
-
adafruit_circuitpython_pcf8575-1.0.4.dist-info/LICENSE,sha256=ScTVWEI1T6rq1ZhQw1RqjeGqtXlQhEjsrf0eu0UplE0,1098
|
3
|
-
adafruit_circuitpython_pcf8575-1.0.4.dist-info/METADATA,sha256=9vZzBybyuyIxRpsG7Wh5c7q5pbTp2KHkhuHVeRO1yHw,4178
|
4
|
-
adafruit_circuitpython_pcf8575-1.0.4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
5
|
-
adafruit_circuitpython_pcf8575-1.0.4.dist-info/top_level.txt,sha256=ljpqZNSdBL_6xWXBRvpa7FbAvcR0pYtl8HaTB5rAthk,17
|
6
|
-
adafruit_circuitpython_pcf8575-1.0.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|