bpetrikovics / nrf-serial-monitor

Receiver script and MQTT Bridge for my NRF24-based IOT sensor boards

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NRF Serial Monitor

CodeQL Docker

A small tool I use to receive data from my self-built IOT sensors. Probably not really useful to anyone else besides me. One day I might create a proper PCB design and publish that as well, along with the (rather simplistic) arduino code.

Until then - data is received through an NRF24L01 SPI radio board by a small hub, built on a 8Mhz, 3.3V Arduino Pro Mini clone. The receiver is outputting the data through its UART, connected to a computer via a CP210x USB/serial dongle, and read by this serial monitor script. Data is pushed to an MQTT server and then used by Home Assistant.

Usage

I use docker for simplicity, also to avoid writing init scripts or systemd unit files; but the script of course just runs fine on its own as well.

Create an .env file along witht he docker-compose.yaml, and specify the MQTT server address in it, e.g.:

MQTT_IP=1.2.3.4

Then simply bring up the container with docker-compose up -d

About

Receiver script and MQTT Bridge for my NRF24-based IOT sensor boards

License:MIT License


Languages

Language:Python 95.8%Language:Dockerfile 4.2%