Introduction
CircuitPython Driver for the AD Semiconductor / TouchSemi TS20, a 20-channel capacitive touch sensor with automatic sensitivity calibration, controlled over I2C.
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.
Hardware
This library is for the AD Semiconductor / TouchSemi TS20 20-channel capacitive touch sensor
For an example board, see https://github.com/todbot/TS20_Test_Board/
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 ts20
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-ts20
To install system-wide (this may be required in some cases):
sudo pip3 install circuitpython-ts20
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-ts20
Usage Example
Print out which of the 20 touch pads are being touched:
import time
import board
import ts20
i2c = board.I2C() # uses board.SCL and board.SDA
# sensitivity is 0 (most sensitive) to 15 (least sensitive)
touch = ts20.TS20(i2c, sensitivity=5)
while True:
for pad, is_touched in enumerate(touch.touched_pads):
if is_touched:
print("pad", pad, "touched!")
time.sleep(0.25)
Pads are numbered 0-19 (the datasheet calls them channels CS1-CS20). Sensitivity is really a touch threshold, so a lower number means the pad triggers more easily. It can be changed at any time, for every pad at once or for a single pad:
touch.sensitivity = 3 # every pad
touch[0].sensitivity = 10 # just pad 0, less sensitive
print(touch.sensitivity) # list of all 20 settings
See the examples folder for complete examples.
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.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file circuitpython_ts20-0.5.tar.gz.
File metadata
- Download URL: circuitpython_ts20-0.5.tar.gz
- Upload date:
- Size: 27.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d807bf6f39cc5f22ff9ee8164fc71e5f51ff165e1556c85b1f7458f638e58481
|
|
| MD5 |
6e896c4fa39b09d11d53ae73c31384ba
|
|
| BLAKE2b-256 |
5ddf5979c4790e0ba5517b44983369f0a38f3a38cb3422cac181485b0e6efd54
|
File details
Details for the file circuitpython_ts20-0.5-py3-none-any.whl.
File metadata
- Download URL: circuitpython_ts20-0.5-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8f15b2ddf846b3653f249f5f772fa81d73c0073e9eef53af84bbe3f55f18959
|
|
| MD5 |
ce817919ef8ea9227ce797ae068c8d49
|
|
| BLAKE2b-256 |
ba7716001b856bed06b05204b926c139602526ae4dc414662a088bfcf3638562
|