Raspberry Pi library to communicate with the TLC59711 12 channel LED driver
Project description
tlc59711 12 channel LED PWM driver
python port of the c++ version by adafruit https://github.com/adafruit/Adafruit_TLC59711
Chip
Datasheet: http://www.ti.com/lit/ds/symlink/tlc59711.pdf Adafruit prototyping board: https://www.adafruit.com/product/1455
One communicates with the chip via the i2c bus by toggling clk (clock) to shift the current state (low/high) of the data pin into the ICs 16bit register.
Usage
Connect the IC to your pi using any two GPIO pins
| Name | RPi Pin | RPi GPIO | TLC59711 | Adafruit TLC59711 |
|---|---|---|---|---|
| Data | 18 | GPIO24 | SDTI | DI |
| Clock | 16 | GPIO23 | SCKI | CI |
| 3v3 | 1 | 3v3 | 3v3 | VCC |
| Ground | 6 | GND | GND | GND |
import the library and RPi.GPIO
import RPi.GPIO as GPIO
from tlc59711 import tlc59711
GPIO.setmode(GPIO.BCM)
tlc = tlc59711(23, 24)
now you can set each channel like this
tlc.SetPWM(0,0xFFFF)
this sets channel 0 to maximum brightness. The TLC supports 65536 brightness steps from 0 to 100%:
| Value | Brightness |
|---|---|
| 0xFFFF | 100% |
| 0x7FFF | 50% |
| 0x3FFF | 25% |
the datasheet has more information on this
License
this package is a port of https://github.com/adafruit/Adafruit_TLC59711 their BSD license.txt is included in this repository.
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
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 rpi-tlc59711-1.0.0.tar.gz.
File metadata
- Download URL: rpi-tlc59711-1.0.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b6f3f8095f24c2b66f47091656ec429a7d3f632d0751fc7ceccbfeb3c54e373
|
|
| MD5 |
f275de9804c607974ccfcafbc73d7dac
|
|
| BLAKE2b-256 |
b1f00fbd517c5f07fc095486148dd7e022d6a0dad04006d0f50a654cf74eee3f
|
File details
Details for the file rpi_tlc59711-1.0.0-py3-none-any.whl.
File metadata
- Download URL: rpi_tlc59711-1.0.0-py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.23.3 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eb26661e84514c6f568f2844eb6e35ec99299016607482da95863b9299cc771
|
|
| MD5 |
9b01267e51db6df3161b56879edc8e23
|
|
| BLAKE2b-256 |
4d3cd3b8a0e0e2a3022c9c48de444d0b5a78b2d1e453513822926f9164f664f1
|