CircuitPython library for control of LTC166X 8-bit and 10-bit DACs.
Project description
Introduction
CircuitPython library for control of LTC1665 8-bit and LTC1660 10-bit DACs from Linear Technologies.
Multiple LTC1665/LTC1660’s can be controlled from a single 3-wire serial port (i.e., SCK, DIN and CS/LD) by using the included “daisy-chain” facility. A series of n chips is configured by connecting each DOUT (except the last) to DIN of the next chip, forming a single 16n-bit shift register. The SCK and CS/LD signals are common to all chips in the chain. In use, CS/LD is held low while n 16-bit words are clocked to DIN of the first chip; CS/LD is then pulled high, updating all of them simultaneously.
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 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 creativecontrol-circuitpython-ltc166x
To install system-wide (this may be required in some cases):
sudo pip3 install creativecontrol-circuitpython-ltc166x
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 creativecontrol-circuitpython-ltc166x
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 creativecontrol_circuitpython_ltc166x
Or the following command to update an existing version:
circup update
Usage Example
import time
import board
import creativecontrol_circuitpython_ltc166x
ltc1665 = creativecontrol_circuitpython_ltc166x.LTC1665(cs=board.GP1, sck=board.GP2, mosi=board.GP3, debug=True)
dac_values = [1, 3, 7, 15, 31, 63, 127, 255]
while True:
print('writing dac values ', time.monotonic())
ltc1665.write_dac_values(dac_values)
time.sleep(4)
print('off')
ltc1665.write_dac_values([0]*8)
time.sleep(4)
Documentation
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
Hashes for creativecontrol-circuitpython-ltc166x-0.2.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46b4401f39e906881eaec957f63405b63f24e340a2038373f316ab8d236dea38 |
|
MD5 | a030dcddf00c595534c695848f7baacd |
|
BLAKE2b-256 | dc408599bea9d7d6050028aaad29c9cd28f429bd050159e92b56e837895600a7 |
Hashes for creativecontrol_circuitpython_ltc166x-0.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7da7c8836ece3e53299f38419a51d0cc597e7ea625600e42dffc1dd668fdb5c4 |
|
MD5 | b9c636f36ab4ea1b68b62404ed34f229 |
|
BLAKE2b-256 | de15c12f4164ecae6c0e6d787ff0dc955560240005904551568dac39bdfb200c |