CircuitPython pin or arbitrary predicate debouncer.
Project description
Introduction
Debounces an arbitrary predicate function (typically created as a lambda) of 0 arguments. The constructor also accepts a digital pin as a convienence.
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.
Usage Example
import board
import digitalio
from adafruit_debouncer import Debouncer
pin = digitalio.DigitalInOut(board.D12)
pin.direction = digitalio.Direction.INPUT
pin.pull = digitalio.Pull.UP
switch = Debouncer(pin)
while True:
switch.update()
if switch.fell:
print('Just pressed')
if switch.rose:
print('Just released')
if switch.value:
print('not pressed')
else:
print('pressed')
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.
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 adafruit-circuitpython-debouncer-1.3.8.tar.gz
.
File metadata
- Download URL: adafruit-circuitpython-debouncer-1.3.8.tar.gz
- Upload date:
- Size: 28.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe58294bf063c66ae11bf8e3a1794d22d6cdd256a349fe17b3c38329e5c3bc75 |
|
MD5 | ca6e1c6d5606f2b7f4e1894c3943fb71 |
|
BLAKE2b-256 | 31a8d5c1c4c38b09144c40e041a1e97448eb1a162ea909cc7c23fa3e1cba2e03 |