bme680-homekit/Readme.md

107 lines
3.1 KiB
Markdown
Raw Normal View History

2022-02-21 20:24:05 +00:00
# Introduction
2023-12-02 10:08:49 +00:00
Simple script utilities to add BME680 sensor readings to Apple Homekit using a Raspberry PI with minimal configuration.
2022-02-28 22:13:03 +00:00
After running the program you'll be given the QR code used to add the sensor as an accessory in Homekit.
![](./docs/add_to_home.png)
![](./docs/homekit_view.jpg)
2022-02-21 20:24:05 +00:00
## Installing
2022-06-13 09:58:41 +00:00
Ensure you are the `pi` user. Clone the repo in home and then install requirements.
### Cloning the project
2022-02-21 20:24:05 +00:00
```bash
cd /home/pi && git clone git@github.com:dnutiu/bme680-homekit.git && cd bme680-homekit
sudo apt-get install libavahi-compat-libdnssd-dev
pip3 install -r requirements.txt
```
2022-06-13 09:58:41 +00:00
### Sensors
2022-06-13 10:44:39 +00:00
The `sensors` directory contains code for operating the bme680 sensor.
The sensor values are collected and exposed in HomeKit and as prometheus metrics.
The prometheus metrics can be accessed on port `8000`.
2022-02-21 20:24:05 +00:00
Run the program once to pair it with your ios. ex:
```bash
2022-06-13 09:58:41 +00:00
cd sensors
2022-02-21 20:24:05 +00:00
python3 main.py
Setup payload: X-HM://0023K50QET2YB
Scan this code with your HomeKit app on your iOS device:
Or enter this code in your HomeKit app on your iOS device: 053-86-998
```
Copy the systemd service.
```bash
sudo cp bme680-homekit.service /etc/systemd/system
sudo systemctl status bme680-homekit
```
```
● bme680-homekit.service - Bme680 Homekit service
Loaded: loaded (/etc/systemd/system/bme680-homekit.service; disabled; vendor preset: enabled)
Active: inactive (dead)
```
Start the service
```bash
sudo systemctl start bme680-homekit
sudo systemctl status bme680-homekit
```
```
● bme680-homekit.service - Bme680 Homekit service
Loaded: loaded (/etc/systemd/system/bme680-homekit.service; disabled; vendor preset: enabled)
Active: active (running) since Mon 2022-02-21 20:10:30 GMT; 935ms ago
Main PID: 1722 (python3)
Tasks: 1 (limit: 780)
CPU: 895ms
CGroup: /system.slice/bme680-homekit.service
└─1722 /usr/bin/python3 /home/pi/bme680-homekit/main.py
Feb 21 20:10:30 raspberrypi systemd[1]: Started Bme680 Homekit service.
2022-06-13 11:00:45 +00:00
```
2023-10-05 20:58:57 +00:00
## Troubleshooting
If you get an error for FileNotFound:
```
Traceback (most recent call last):
File "/home/denis/bme680-homekit/sensors/main.py", line 112, in <module>
driver.add_accessory(accessory=get_bridge(driver))
File "/home/denis/bme680-homekit/sensors/main.py", line 101, in get_bridge
bridge.add_accessory(Bme680Sensor(accessory_driver, "Sensor"))
File "/home/denis/bme680-homekit/sensors/main.py", line 33, in __init__
self.sensor = bme680.BME680(bme680.I2C_ADDR_PRIMARY)
File "/home/denis/.local/lib/python3.9/site-packages/bme680/__init__.py", line 43, in __init__
self._i2c = smbus.SMBus(1)
FileNotFoundError: [Errno 2] No such file or director
```
You will need to active I2C interface with `sudo raspi-config` -> Interfacing -> I2C
2022-06-13 11:00:45 +00:00
### Prometheus
Prometheus is a system for monitoring and alerting. To install it run `prometheus./install.sh`.
Prometheus server will listen on port `:9090`
### Grafana
Grafana can be used to create dashboard and visualise prometheus metrics. To install it run `grafana/install.sh`
2022-06-13 12:14:40 +00:00
Grafana is accessible on port `:80`. Premade dashboards can be found in the `grafana/dashboards` folder.
2023-10-05 20:58:57 +00:00
![](./docs/grafana_dashboard.png)