Este repo contiene el código para leer los sensores bluetooth Mijia
Go to file
parra 022f9df89a
continuous-integration/drone Build is passing Details
continuous-integration/drone/push Build is passing Details
Removed trigger filter in build pipeline
2022-10-07 12:07:12 +02:00
.drone.yml Removed trigger filter in build pipeline 2022-10-07 12:07:12 +02:00
.gitignore Initial commit 2022-08-11 18:12:20 +02:00
README.md Updated CI badge in README.md 2022-10-07 12:07:12 +02:00
env_file Initial commit 2022-08-11 18:12:20 +02:00
main.py Initial commit 2022-08-11 18:12:20 +02:00
requirements.txt Initial commit 2022-08-11 18:12:20 +02:00

README.md

Bluetooth LE to MQTT bridge for the Xiaomi Mijia Temperature & Humidity sensor

Build Status

Create environment file

Copy the env_file to .env and open it. Complete all environment variables:

  • MQTT_[SERVER/PORT/USER/PASSWORD/CLIENT_ID] are used to connect with the broker.
  • MQTT_TOPIC_PREFIX define the prefix for all topics with sensor info.
  • MQTT_TELE_PREFIX is used to publish the sensor data, like battery or status.
  • MQTT_SENSOR_NAME contains the sensor name, useful to split the telemetry data if you have more than one sensors.
  • MQTT_PUBLISH_DELAY specify, in seconds, how many time should wait since the script take the measurements to publish in the broker
  • MIJIA_BTLE_ADDRESS constant with the BLE address of your Mijia device.. This can be retrieved activating the pairing mode in the sensor and scanning the BT devices

Install dependencies

You'll need to install bluez and python3. Then you'll need pip3 to install bluepy.

Example on a Raspberry Pi 3:

$ sudo apt-get install python-pip libglib2.0-dev
$ sudo pip3 install -r requirements.txt

Run

You can execute the script directly using the command:

$ ./main.py

Or you can add a new entry in the crontab, like:

*/20 * * * * /usr/bin/python3 ~/scripts/mijia-temperature/main.py >~/scripts/mijia-temperature/last.log 2>&1