WLED/usermods/Enclosure_with_OLED_temp_ESP07
Frank dbe8554724 code spell checking - part3 (usermods)
if you can spell Fahrenheit, you can't spell Celsius. And vice versa :-)
2023-12-14 03:52:06 +01:00
..
assets
readme.md
usermod.cpp code spell checking - part3 (usermods) 2023-12-14 03:52:06 +01:00
usermod_bme280.cpp code spell checking - part3 (usermods) 2023-12-14 03:52:06 +01:00

readme.md

Almost universal controller board for outdoor applications

This usermod is using ideas from @mrVanboy and @400killer

Installation of file: Copy and replace file in wled00 directory.

For BME280 sensor use usermod_bme280.cpp. Copy to wled00 and rename to usermod.cpp

Project repository

Features

  • SSD1306 128x32 and 128x64 I2C OLED display
  • On screen IP address, SSID and controller status (e.g. ON or OFF, recent effect)
  • Auto display shutoff for extending display lifetime
  • Dallas temperature sensor
  • Reporting temperature to MQTT broker

Hardware

Hardware connection

Functionality checked with

  • ESP-07S
  • PlatformIO
  • SSD1306 128x32 I2C OLED display
  • DS18B20 (temperature sensor)
  • BME280 (temperature, humidity and pressure sensor)
  • KY-022 (infrared receiver)
  • Push button (N.O. momentary switch)

For Dallas sensor uncomment U8g2@~2.27.3,DallasTemperature@~3.8.0,OneWire@~2.3.5 under [common] section in platformio.ini:

# platformio.ini
...
[platformio]
...
default_envs = esp07
; default_envs = d1_mini
...
[common]
...
lib_deps_external =
  ...
  #To use the SSD1306 OLED display, uncomment following
  U8g2@~2.27.3
  #For Dallas sensor, uncomment the following 2 lines
  DallasTemperature@~3.8.0
  OneWire@~2.3.5
...

For BME280 sensor, uncomment U8g2@~2.27.3,BME280@~3.0.0 under [common] section in platformio.ini:

# platformio.ini
...
[platformio]
...
default_envs = esp07
; default_envs = d1_mini
...
[common]
...
lib_deps_external =
  ...
  #To use the SSD1306 OLED display, uncomment following
  U8g2@~2.27.3
  #For BME280 sensor uncomment following
  BME280@~3.0.0
...