pretend to be 'rotaryio' for boards that need non-sequential pins
Project description
Introduction
Pretend to be rotaryio for boards that need non-sequential pins.
On RP2040-based boards like the Raspberry Pi Pico and QTPy RP2040, if you try to use “rotaryio” on pins whose GPIO numbers are not sequential, you will get a RuntimeError: Pins must be sequential GPIO pins.
This package acts just like rotaryio but uses keypad and some logic to read a rotary encoder. It is not as fast or efficient as rotaryio but it will work on RP2040 boards.
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.
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 ruhrohrotaryio
Or the following command to update an existing version:
circup update
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 circuitpython-ruhrohrotaryio
To install system-wide (this may be required in some cases):
sudo pip3 install circuitpython-ruhrohrotaryio
To install in a virtual environment in your current project:
mkdir project-name && cd project-name
python3 -m venv .venv
source .env/bin/activate
pip3 install circuitpython-ruhrohrotaryio
Usage Example
import os
import time
import board
# works on both QTPY M0 and QTPY RP2040
if os.uname().machine.find("rp2040") > 0: # RP2040
from ruhrohrotaryio import IncrementalEncoder
else:
from rotaryio import IncrementalEncoder
encoder = IncrementalEncoder( board.A3, board.A1 )
while True:
print(encoder.position)
time.sleep(0.1)
Documentation
API documentation for this library can be found on Read the Docs.
For information on building library documentation, please check out this guide.
Contributing
Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.
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
Built Distribution
File details
Details for the file circuitpython-ruhrohrotaryio-1.0.tar.gz
.
File metadata
- Download URL: circuitpython-ruhrohrotaryio-1.0.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55f1a4c6a427cbc446cb601c8e017284f088b5c7296717744bc38abcd32ce63f |
|
MD5 | aea2edddf9510e25f4c466410b50bef0 |
|
BLAKE2b-256 | 1b4c97561a7749777149f787f637309d09601244575f450a77bff9462b23325c |
File details
Details for the file circuitpython_ruhrohrotaryio-1.0-py3-none-any.whl
.
File metadata
- Download URL: circuitpython_ruhrohrotaryio-1.0-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ca45e8a17d766333f03156629ab35d6a3d61f69fa7c1c9d942e94811e798d5b |
|
MD5 | 5090638f93c76f9241f1d41ce8c4be15 |
|
BLAKE2b-256 | c04adf45120d97179a5f4c95250be708e4f273a66040d3b399864d91ac9c5b7f |