-
Notifications
You must be signed in to change notification settings - Fork 111
Open
Labels
Description
Hello everyone,
I saw in the closed Issue (#80) a person asking for a package for LCD.
Well I tried to do my best, I did an LCD_16x2 0.1.0-Alpha1 version here REPO PACKAGE
You can install it (and especially try it to find the bugs):
- With GitHub:
pip install git+https://github.com/Jumitti/lcd_home_automation.git@package
- With Pypi:
pip install LCD-16x2==0.1.0a1
Small tips etc... :
- use
from lcd_16x2 import drivers
instead ofimport drivers
: pourquoi ce changement ? I developed an emulator PR LCD 16x2 simulator #79 LCD Emulator So you might as well integrate it now - Same if you use the emulator:
from lcd_16x2 import emulators
instead ofimport emulators
- If you test demos:
python -m demo.demo_clock
(change demo_clock by the demo available in the folder demo) - There is a OS recognition. If you are on Raspeberry, then the package will require the necessary to install what we were doing with
sudo./Install.sh
. If you are on Windows or MacOS, since the 'smbus' specific packages in Raspberry (the pines and connectors) are not, then it will also be necessary so that you can use the emulator anyway
I would do other updates if I forgot things, I greatly invite you to try and make feedback...