Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heapy/honeywell-iaq-mqtt
Honeywell IAQ to MQTT Bridge
https://github.com/heapy/honeywell-iaq-mqtt
hacktoberfest home-assistant honeywell mosquitto mqtt
Last synced: about 2 months ago
JSON representation
Honeywell IAQ to MQTT Bridge
- Host: GitHub
- URL: https://github.com/heapy/honeywell-iaq-mqtt
- Owner: Heapy
- License: gpl-3.0
- Created: 2021-10-31T18:58:52.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-04T10:19:25.000Z (4 months ago)
- Last Synced: 2024-11-09T12:38:00.832Z (about 2 months ago)
- Topics: hacktoberfest, home-assistant, honeywell, mosquitto, mqtt
- Language: Kotlin
- Homepage:
- Size: 13.2 MB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Honeywell Indoor Air Quality Detector to MQTT
Simple application to read the air quality from the Honeywell Indoor Air Quality Detector Cloud and publish the data to an MQTT broker.
![monitor](./product.png)
## Installation
Application distributed as simple docker image, supported architectures are:
- amd64 (Intel, AMD)
- arm64 (Mac Silicon, ...)
- armhf (Raspberry Pi, ...)Sample docker compose file for reference:
```yaml
version: "3.9"
services:
honeywell_iaq:
container_name: "honeywell_iaq"
command: "mqtt" # or "log"
restart: always
image: "ghcr.io/heapy/honeywell-iaq:main"
environment:
- MQTT_URL=tcp://192.168.1.1:1883
- MQTT_CLIENT_ID=honeywell-iaq-mqtt
- PHONE_NUMBER=+8615151860095
- PASSWORD=hhjwq15151860095
- PHONE_UUID=generate-some-using- https://duckduckgo.com/?q=uuid
```## Why it's not ideal solutions
This solution relies on unstable Honeywell chinese cloud servers. Sometimes they are may not be available or like it's happen to me, TLS certificate was expired for few days.
**Better solution would be to develop firmware that connects directly to MQTT Broker from device.**
## Home Assistant integration
![home_assistant](home_assistant.png)