Exposes general purpose IO (GPIO), hardware sensors and serial devices to an MQTT server, enabling remote monitoring and control. This allows pins to be read and switched by reading or writing messages to MQTT topics. The streams and I2C sensors will be read periodically and publish their values.
Visit the GitHub Wiki for more detailed information.
- Raspberry Pi GPIO (
raspberrypi
) - Orange Pi GPIO (
orangepi
) - PCF8574 IO chip (
pcf8574
) - PCF8575 IO chip (
pcf8575
) - PiFaceDigital 2 IO board (
piface2
) - Beaglebone GPIO (
beaglebone
) - Linux Kernel 4.8+ libgpiod (
gpiod
)
- LM75 i2c temperature sensor (
lm75
) - DHT11 DHT22 AM2302 temperature/humidity sensor (
dht22
) - BH1750 light level sensor (
bh1750
) - DS18S20, DS1822, DS18B20, DS1825, DS28EA00, MAX31850K one-wire temperature sensors: (
ds18b
) - HC-SR04 ultrasonic distance sensor (
hcsr04
) - MCP3008 analog digital converter (
mcp3008
)
- Serial port (
streamserial
)
pip install pi-mqtt-gpio
python -m pi_mqtt_gpio.server config.yml
Configuration is handled by a YAML file which is passed as an argument to the server on startup.
Full configuration documentation is available on the GitHub Wiki.
The following are some example configurations.
With the following example config, switch pin 21 on by publishing to the home/kitchen/output/lights/set
topic with a payload of ON
, and pin 22 by publishing to home/kitchen/output/fan/set
.
mqtt:
host: test.mosquitto.org
topic_prefix: home/kitchen
gpio_modules:
- name: pi_gpio
module: raspberrypi
digital_outputs:
- name: lights
module: pi_gpio
pin: 21 # This is specified as the GPIO.BCM standard, not GPIO.BOARD
- name: fan
module: pi_gpio
pin: 22
Or to receive updates on the status of an input pin, subscribe to the home/input/doorbell
topic:
mqtt:
host: test.mosquitto.org
topic_prefix: home
gpio_modules:
- name: pi_gpio
module: raspberrypi
digital_inputs:
- name: doorbell
module: pi_gpio
pin: 22
The IO modules are pluggable and multiple may be used at once. For example, if you have a Raspberry PI with some GPIO pins in use and also a PCF8574 IO expander on the I2C bus, you'd list two modules in the gpio_modules
section and set up the inputs and outputs accordingly:
mqtt:
host: test.mosquitto.org
topic_prefix: pimqttgpio/mydevice
gpio_modules:
- name: pi_gpio
module: raspberrypi
- name: pcf_expander1
module: pcf8574
i2c_bus_num: 1
chip_addr: 0x20
digital_inputs:
- name: button
module: pi_gpio
pin: 21 # This device is connected to pin 21 of the Raspberry PI GPIO
pullup: yes
digital_outputs:
- name: bell
module: pcf_expander1
pin: 2 # This device is connected to pin 2 of the PCF8574 IO expander
Receive updates on the value of a sensor by subscribing to the home/sensor/<sensor input name>
topic. In the following example, this would be home/sensor/temperature
:
mqtt:
host: test.mosquitto.org
topic_prefix: home
sensor_modules:
- name: lm75_sensor
module: lm75
i2c_bus_num: 1
chip_addr: 0x48
- name: dht22_sensor
module: dht22
type: AM2302
pin: 4
- name: bh1750_sensor
module: bh1750
i2c_bus_num: 1
chip_addr: 0x23
- name: ds18b22_sensor
module: ds18b
type: DS18S20
address: 000803702e49
- name: hcsr04_sensor
module: hcsr04
pin_echo: 27
pin_trigger: 17
burst: 10 # number of measurements for output of distance value in [cm]
- name: mcp3008_sensor
module: mcp3008
sensor_inputs:
- name: lm75_temperature
module: lm75_sensor
interval: 15 # interval in seconds that a value is read from the sensor and a update is published
digits: 4 # number of digits to round the value by
- name: dht22_temperature
module: dht22_sensor
interval: 10
digits: 4
type: temperature # can be temperature or humidity
- name: dht22_humidity
module: dht22_sensor
interval: 10
digits: 4
type: humidity
- name: bh1750_lux
module: bh1750_sensor
interval: 10
digits: 2
- name: ds18b22_temperature
module: ds18b22_sensor
interval: 60
digits: 2
- name: hcsr04_distance
module: hcsr04_sensor
interval: 10 # take a measurement every 10s
digits: 1
- name: mcp3008_voltage
module: mcp3008_sensor
interval: 300
channel: CH4 # measure on CH4 of MCP3008
Transmit data by publishing to the home/stream/<stream_write_name>
topic. In the following example, this would be home/stream/serialtx
.
Receive data from a stream by subscribing to the home/stream/<stream_read_name>
topic. In the following example, this would be home/stream/serialrx
.
The stream data is parsed using Python's string_escape
to allow the transfer of control characters.
mqtt:
host: test.mosquitto.org
topic_prefix: home
stream_modules:
- name: serialcomms
module: streamserial
device: /dev/ttyS0
baud: 115200
bytesize: 8 # Number of data bits in word. Can be: 5,6,7,8
parity: none # Parity can be one of none,odd,even,mark,space
stopbits: 1 # Number of stop bits. Can be: 1,1.5,2
cleanup: no # This optional boolean value sets whether the module's `cleanup()` function will be called when the software exits.
stream_reads:
- name: serialrx
module: serialcomms
interval: 0.25 # Stream read polling interval in seconds
stream_writes:
- name: serialtx
module: serialcomms
Testing example:
# -N disables printing extra new line on each subscription
mosquitto_sub -h <broker url> -t <topic prefix>/stream/serialrx -N
mosquitto_pub -h <broker url> -t <topic prefix>/stream/serialtx -m "testing123\r\n"
You need to specify what OrangePi board you use
gpio_modules:
- name: orangepi
module: orangepi
board: zero # Supported: ZERO, R1, ZEROPLUS, ZEROPLUS2H5, ZEROPLUS2H3, PCPCPLUS, ONE, LITE, PLUS2E, PC2, PRIME
mode: board
This project is not tied to any specific deployment method, but one recommended way is to use virtualenv
and supervisor
. This will launch the project at boot time and handle restarting and log file rotation. It's quite simple to set up:
If using Raspbian, install supervisor
with apt
.
sudo apt-get update
sudo apt-get install supervisor
Not strictly necessary, but it's recommended to install the project into a virtualenv. Generally, the best way to get an up-to-date version of virtualenv
is to use pip install --upgrade virtualenv
. If you don't already have pip
, then check here for installation instructions.
cd /home/pi
virtualenv ve
. ve/bin/activate
pip install pi-mqtt-gpio
Create yourself a config file, following instructions and examples above, and save it somewhere, such as /home/pi/pi-mqtt-gpio.yml
.
Create a supervisor config file in /etc/supervisor/conf.d/pi-mqtt-gpio.conf something along the lines of the following:
[program:pi_mqtt_gpio]
command = /home/pi/ve/bin/python -m pi_mqtt_gpio.server pi-mqtt-gpio.yml
directory = /home/pi
redirect_stderr = true
stdout_logfile = /var/log/pi-mqtt-gpio.log
Save the file and then run the following to update supervisor and start the program running.
sudo supervisorctl update
Check the status of your new supervisor job:
sudo supervisorctl status
Check the supervisor docs for more supervisorctl
commands.
Current state: experimental and unmaintained
Two images have been created for Docker. One using the x86_64 architecture (for Intel and AMD CPUs) and one for the ARM architecture (for Raspberry Pi etc.). The tags of the images are therefore flyte/mqtt-gpio:x86_64
and flyte/mqtt-gpio:armv7l
. These are the outputs of uname -m
on the two platforms they've been built on. For the following examples I'll assume you're running on Raspberry Pi.
You may also run this software using Docker. You must create your config file as above, then run the docker image:
docker run -ti --rm -v /path/to/your/config.yml:/config.yml flyte/mqtt-gpio:armv7l
Or to run in the background:
docker run -d --name mqtt-gpio -v /path/to/your/config.yml:/config.yml flyte/mqtt-gpio:armv7l
You'll most likely want to use some hardware devices in your config, since that's what this project is all about. For example, if you wish to use the i2c bus, pass it through with a --device
parameter:
docker run -ti --rm -v /path/to/your/config.yml:/config.yml --device /dev/i2c-0 flyte/mqtt-gpio:armv7l
If you aren't able to find the exact device path to use, then you can also run the docker container in --privileged
mode which will pass all of the devices through from the host:
docker run -ti --rm -v /path/to/your/config.yml:/config.yml --privileged flyte/mqtt-gpio:armv7l
Please raise an issue on Github if you find that any of this information is incorrect.