CircuitPython driver library for the Sparkfun SerLCD displays
Project description
Introduction
CircuitPython library for the Sparkfun SerLCD displays. This library is ported from SparkFun SerLCD Arduino Library
SparkFun 16x2 SerLCD - Black on RGB 3.3V (LCD-14072)
SparkFun 16x2 SerLCD - RGB on Black 3.3V (LCD-14073)
SparkFun 20x4 SerLCD - Black on RGB 3.3V (LCD-14074)
Dependencies
This driver depends on:
Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle or individual libraries can be installed using circup.
Raspberry Pi Setup
Adafruit has an excellent tutorial on Installing CircuitPython Libraries on Raspberry Pi. You can purchase one from the Adafruit shop
Quick Start Summary:
Start with the latest version of Raspbian with Wifi configured.
Enable SSH, I2C and SPI.
sudo raspi-config
Update your system to the latest version.
sudo apt-get update
sudo apt-get upgrade
Update the python tools
sudo pip3 install --upgrade setuptools
(If pip3 is not installed, install it and rerun the command)
sudo apt-get install python3-pip
Install the CircuitPython libraries
pip3 install RPI.GPIO
pip3 install adafruit-blinka
Installing from PyPI
On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. Installing this library will also install the dependency adafruit-circuitpython-busdevice.
To install for current user:
pip3 install sparkfun-circuitpython-serlcd
To install system-wide (this may be required in some cases):
sudo pip3 install sparkfun-circuitpython-serlcd
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .env
source .env/bin/activate
pip3 install sparkfun-circuitpython-serlcd
Installing to a Connected CircuitPython Device with Circup
Make sure that you have circup installed in your Python environment. Install it with the following command if necessary:
pip3 install circup
With circup installed and your CircuitPython device connected use the following command to install:
circup install serlcd
Or the following command to update an existing version:
circup update
Usage Example
Sparkfun SerLCD Hookup Guide - The Arduino examples in the Hookup Guide are available for Python with this library
CircuitPython on a Raspberry Pi - Basic information on how to install CircuitPython on a Raspberry Pi.
Code Example:
# import the CircuitPython board and busio libraries import board # Enable I2C (Qwiic) communication from sparkfun_serlcd import Sparkfun_SerLCD_I2C i2c = board.I2C() serlcd = Sparkfun_SerLCD_I2C(i2c) # Enable SPI communication #import digitalio #from sparkfun_serlcd import Sparkfun_SerLCD_SPI #spi = busio.SPI(board.SCK, board.MOSI, board.MISO) # # Set up chip select, CE0 or D8 is labeled CS on Sparkfun Pi Hat #cs = digitalio.DigitalInOut(board.CE0) #cs.direction = digitalio.Direction.OUTPUT # #serlcd = Sparkfun_SerLCD_SPI(spi, cs) # Enable UART Serial communication # SerLCD is connected to the RPi via a USB to TTL 3.3v Serial Cable: # https://www.sparkfun.com/products/12977 # https://www.adafruit.com/product/954 #import serial #from sparkfun_serlcd import Sparkfun_SerLCD_UART # #usb0 = serial.Serial( # port='/dev/ttyUSB0', # baudrate = 9600, # parity=serial.PARITY_NONE, # stopbits=serial.STOPBITS_ONE, # bytesize=serial.EIGHTBITS, # timeout=1) # #serlcd = Sparkfun_SerLCD_UART(usb0)
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
Documentation
For information on building library documentation, please check out this guide.
Building locally
Zip release files
To build this library locally you’ll need to install the circuitpython-build-tools package.
python3 -m venv .env
source .env/bin/activate
pip install circuitpython-build-tools
Once installed, make sure you are in the virtual environment:
source .env/bin/activate
Then run the build:
circuitpython-build-bundles --filename_prefix sparkfun-circuitpython-serlcd --library_location .
Sphinx documentation
Sphinx is used to build the documentation based on rST files and comments in the code. First, install dependencies (feel free to reuse the virtual environment from above):
python3 -m venv .env
source .env/bin/activate
pip install Sphinx sphinx-rtd-theme
Now, once you have the virtual environment activated:
cd docs
sphinx-build -E -W -b html . _build/html
This will output the documentation to docs/_build/html. Open the index.html in your browser to view them. It will also (due to -W) error out on any warning like Travis will. This is a good way to locally verify it will pass.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sparkfun-circuitpython-serlcd-1.0.4.tar.gz
.
File metadata
- Download URL: sparkfun-circuitpython-serlcd-1.0.4.tar.gz
- Upload date:
- Size: 41.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2319f669552a19ed957bbf2bee9a967f78de7d675af16cf111e0b316d4524c7 |
|
MD5 | 462c75d0335a3cfc202e2c95604d1541 |
|
BLAKE2b-256 | 63a03e8bc76ee9f20fb9ab74b9bf6a7408d54dab4b1a1064c920a36a0fe73f0c |