package for controlling raspihats.com boards
Project description
This package provides the necessary code to interface the Raspberry Pi HATs(add-on boards) from raspihats.com:
Typical usage often looks like this:
#!/usr/bin/env python
# In this setup there are two I2C-HATs stacked, one Di16 and one Rly10.
from raspihats.i2c_hats import Di16, Rly10
di16 = Di16(0x40) # 0x40 is the I2C bus address
rly10 = Rly10(0x50) # 0x50 is the I2C bus address
# The I2C-HAT address high nibble is fixed(0x4 for Di16, 0x5 for Rly10), the low nibble
# value is set using the on-board address jumper, range is [0x0 .. 0xF].
while True:
state = di16.di_get_channel_state('Di1.1')
rly10.do_set_channel_state('Rly1', state)
rly10.do_set_channel_state('Rly2', not state)
Note
Every I2CHat object is practically a thread, this thread is used to feed the I2C-HAT communication watchdog(CWDT). Failing to feed the CWDT will result in a CWDT timeout which depending on the I2CHat type can have different consequences. By default the CWDT is disabled and the feed thread is not started, advanced users can enable both using the cwdt_start_feed_thread() method.
Installation
Install dependencies
The python-smbus package
$ sudo apt-get install python-smbus
# or if using python 3
$ sudo apt-get install python3-smbus
Install from repository
# Make sure you have git, pip and setuptools installed
$ git clone git@github.com:raspihats/raspihats.git
$ cd raspihats
$ sudo python setup.py install
# or if using python 3
$ sudo python3 setup.py install
Install using pip
# Make sure you have pip and setuptools installed
$ sudo pip install raspihats
# or if using python 3
$ sudo pip3 install raspihats
Checkout raspihats.com
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 raspihats-1.1.1.tar.gz
.
File metadata
- Download URL: raspihats-1.1.1.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b8a6fd9798000ef8009027b726ab5b67068dcf13305eeb9710eb3a50e3bbb1a |
|
MD5 | d8001c90540b1e6838ad7e3b97284f7c |
|
BLAKE2b-256 | a2669e1476e5c76543d0d84739970745f559943182135538ce57000348cd14be |