Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chriskacerguis/honeywell2mqtt
A Docker image for a software defined radio tuned to listen for Honeywell RF security sensors at 345Mhz
https://github.com/chriskacerguis/honeywell2mqtt
docker-image hardware honeywell
Last synced: 9 days ago
JSON representation
A Docker image for a software defined radio tuned to listen for Honeywell RF security sensors at 345Mhz
- Host: GitHub
- URL: https://github.com/chriskacerguis/honeywell2mqtt
- Owner: chriskacerguis
- License: mit
- Created: 2017-08-15T14:49:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-29T16:03:02.000Z (2 months ago)
- Last Synced: 2024-10-14T21:44:50.192Z (23 days ago)
- Topics: docker-image, hardware, honeywell
- Language: Dockerfile
- Size: 86.9 KB
- Stars: 17
- Watchers: 5
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# honeywell2mqtt
A Docker image for a software defined radio tuned to listen for Honeywell RF security sensors at 345Mhz. This is based off of Marco Verleun's
awesome rtl2mqtt image, but adpated just for Honeywell products and made to work with Home Assistant and MQTT Discovery.## Usage
To run the container, use the following:
```
sudo docker run --name honeywell2mqtt -d \
-e MQTT_HOST= \
--privileged chriskacerguis/honeywell2mqtt
```## Name Mapping (OPTIONAL)
By default you the system will not set a friendlt name, and it will simply default to "MQTT Binary Sensor". You can mount a map.json file will an ID to name map, and the friendly name will be set to the value. Here is an example:
```json
{
"648705": "Front Door",
"648653": "Back Door"
}
```Simple add the following line to the docker run command above:
```sh
-v ${pwd}/map.json:/app/map.json
```## MQTT Topics
States will be posted to the topic homeassistant/binary_sensor/[id]/state
Where [id] is the sensor id from the each device
## Hardware
This has been tested and used with the following hardware (you can get it on Amazon)
- Honeywell Ademco 5818MNL Recessed Door Transmitter
- 5800MINI Wireless Door/Window Contact by Honeywell
- NooElec NESDR Nano 2+ Tiny Black RTL-SDR USBHowever, it should work just fine with any Honeywell RF sensors transmitting on 345Mhz.
## Troubleshooting
If you see this error:
> Kernel driver is active, or device is claimed by second instance of librtlsdr.
> In the first case, please either detach or blacklist the kernel module
> (dvb_usb_rtl28xxu), or enable automatic detaching at compile time.Then run the following command on the host
```bash
sudo rmmod dvb_usb_rtl28xxu rtl2832
```