You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@
15
15
### MicroPython Library to use i2c analog IC with arduino and esp8266. Can read analog value and write analog value with only 2 wire (perfect for ESP-01).
16
16
17
17
#### Changelog
18
+
- 16/05/2023: v0.0.2 Minor fix on read and write [#Forum](https://www.mischianti.org/forums/topic/micropython-i2c-pcf8591-round-value-problem-raspberry-pi-pico/)
18
19
- 18/04/2023: v0.0.1 Initial commit of stable version.
19
20
20
21
I try to simplify the use of this IC, with a minimal set of operation.
Copy file name to clipboardExpand all lines: setup.cfg
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# setup.cfg file at the root directory
2
2
[metadata]
3
3
name = pcf8591-library
4
-
version = 0.0.1
4
+
version = 0.0.2
5
5
author = Renzo Mischianti
6
6
description = PCF8591 micropython library for Arduino, Raspberry Pi Pico and rp2040 boards, esp32, SMT32 and ESP8266
7
7
long_description = MicroPython library to use pcf8591 i2c analog IC with Arduino, Raspberry Pi Pico and rp2040 boards, esp32, SMT32 and ESP8266. Can read analog value and write analog value with only 2 wire.
Copy file name to clipboardExpand all lines: setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
name="pcf8591-library",
7
7
package_dir={'': 'src'},
8
8
py_modules=["PCF8591"],
9
-
version="0.0.1",
9
+
version="0.0.2",
10
10
description="PCF8591, library for Arduino, Raspberry Pi Pico and rp2040 boards, esp32, SMT32 and ESP8266",
11
11
long_description="Library to use pcf8591 i2c analog IC with Arduino, Raspberry Pi Pico and rp2040 boards, esp32, SMT32 and ESP8266. Can read analog value and write analog value with only 2 wire. ",
0 commit comments