[examples/basic.py] Added hint on where to get the library from

This commit is contained in:
BlueFox 2024-10-28 19:20:07 +00:00
parent 24e0d7e7be
commit 7e7af6acfd

View File

@ -1,6 +1,6 @@
from WelcomeScreen import WelcomeScreen
from machine import I2C, Pin
from PCF8574T import I2C_LCD
from machine import I2C, Pin # micropython's built-in library
from PCF8574T import I2C_LCD # https://git.privacynerd.de/BlueFox/micropython-libraries/src/branch/main/PCF8574T
LCD_SDA = Pin(8) # just some standard I2C serial data (SDA) outputs (on I2C channel 0 on Pi Pico)
LCD_SCL = Pin(9) # just some standard I2C serial clock (SCL) outputs (on I2C channel 0 on Pi Pico)