CircuitPython library for the Sparkfun Qwiic Keypad
Project description
Introduction
CircuitPython library for Sparkfun Qwiic 12 Button Keypad. This library is ported from SparkFun Qwiic Keypad Arduino Library
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.
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. To install for current user:
pip3 install Sparkfun-circuitpython-qwiickeypad
To install system-wide (this may be required in some cases):
sudo pip3 install Sparkfun-circuitpython-qwiickeypad
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-qwiickeypad
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 qwiickeypad
Or the following command to update an existing version:
circup update
Usage Example
Qwiic Keypad 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 import busio import sparkfun_qwiickeypad # Create bus object using the board's I2C port i2c = busio.I2C(board.SCL, board.SDA) keypad = QwiicKeypad(i2c) # default address is 0x4B # For a different address use QwiicKeypad(i2c, address) # keypad = QwiicKeypad(i2c, 0x4A)
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-qwiickeypad --library_location .
License Information
This product is open source!
Please review the LICENSE.md file for license information.
Please use, reuse, and modify these files as you see fit.
Please maintain the attributions to SparkFun Electronics and Adafruit and release any derivative under the same license.
Distributed as-is; no warranty is given.
Project details
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-qwiickeypad-1.0.3.tar.gz
.
File metadata
- Download URL: sparkfun-circuitpython-qwiickeypad-1.0.3.tar.gz
- Upload date:
- Size: 35.3 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 | f543b3528090128527110153023ba133c6526d5acbe7f7ee26eff15199ed4bec |
|
MD5 | 841f8dbfeba3319f200d418ac91e4ab0 |
|
BLAKE2b-256 | 65002bb1e7b7a14b4cdb8b4696c404cf48fd1fa31eac2f11a3f34bd53925f61a |