This project was originally published on my personal homepage.
The mqtt-bme280-homie project is a small and easy to integrate temperature, air pressure and humidity monitoring solution with an extra SSD1306 OLED display. Sensor data is send via MQTT and displayed on the small screen. Local time is loaded via NTP. The project is built with a cost-effective ESP8266 WiFi chip (I used a NodeMCU from ebay, Wemos D1 mini will do as well).
The software is based on Homie to enable an easy integration with home automation systems like OpenHab.
The display shows 4 screens (can be extended) in a carousel mode. temperature, humidity, air pressure and some status like IP address.
Hardware- ESP8266 (Wemos D1 mini, Nodemcu)
- BME280 sensor breakout
- SSD1306 OLED display
- USB power supply and cable
- Enclosure
I got the BME280 breakout form Adafruit, others will do as well. The SSD1306 OLED displays I ordered at Aliexpress. This enclosure keeps everything together. Wiring is pretty simple since both sensor and display connect via I2C bus with the ESP.
SoftwareThe following software libraries are used. If using PlatformIO all dependencies are resolved automatically.
- Homie V2 (dev) including dependencies
- Adafruit BME280 Driver
- Adafruit Unified Sensor
- SSD1306 driver for ESP8266 platform
- NTPClient to connect to a time server
- Optionally PlatformIO environment for building the code
Source code and configuration details can be found at: https://github.com/mhaack/mqtt-bme280-homie
The software can be configured via MQTT (or Homie config file), also while running. You can set sensorInterval
to control the reading intervals and how often data will be published via MQTT. Additionally a temperatureOffset
can be set, especially if installed within some box the BME280 sensor will give some slightly of temperate values because of the heat the ESP chip emits. Rotating the display is also possible by set the flipScreen
parameter to true.
Comments