esp8266_dimmer_mqtt icon indicating copy to clipboard operation
esp8266_dimmer_mqtt copied to clipboard

ESP8266 (NodeMCU) dimmer control script, with End User WiFi setup, Arduino OTA, PlatformIO.

ESP8266 (NodeMCU) dimmer control

This project is next step of my relay control project where I controled only ON/OFF state of the LED Strip. I hope that following this README will be as straightforward as possible. In case you have questions do not hesitate to contact me using Issues.

Dependencies

  • Some MQTT server (If you have Raspberry Pi use Mosquitto)

  • Optional is Homebridge with MQTT Plugin to control the relay from iDevices

  • Optional that will make your life easier with IoT is Node-RED, plus you can get decent dashboard with Node-RED Dashboard plugin

  • PlatformIO best Arduino IDE available, hacked from ATOM text editor

  • WiFi Manager

  • PubSubClient (MQTT)

  • ESP8266 WiFi library

Install using PlatformIO Library Manager

pio lib -g install WiFiManager
pio lib -g install PubSubClient
pio lib -g install ESP8266wifi
  • Dimming module (Make the one attached, it was made by my neighbour) or buy some cheap on AliExpress/eBay and change the code if needed

Dimming module scheme

Getting started

Update main.ino with your custom preferences

[11] Set desired configuration AP name (This is used when ESP8266 isn't connected to your WiFi router to allow setup) [12] Set password for configuration AP, so that noone else can access it in case your router is OFF [13] Set your MQTT IP address [14] Set your MQTT PORT

[17-23] Change MQTT topics (THIS IS OPTIONAL and I do not recommend to change it for first test of function)

[35] Set your OTA password, this will be used for secured OTA update using PlatformIO, change this respectively in platformio.ini too

[192-194] Pin setup, PWM range, and turn off by default. Change PIN number if needed and make sure you change it everywhere.

Update platformio.ini with your custom preferences (Do not change unless you want to turn OTA ON)

[14 and 15] To enable OTA for next updates uncomment these lines and change values to reflect your enviroment

To turn OTA OFF any time, just comment these lines again with ;

Usage

Send command through your MQTT server as such:

TOPIC DESCRIPTION
home/room/ledstrip Turn LED Strip ON/OFF send 1/0
home/room/ledstrip/brightness Set brightness 0% to 100% so send 0-100 number
home/pingall Send whatever and you get response at topic home/pingallresponse

Receive back from your device:

TOPIC DESCRIPTION
home/room/device_name/devicestatus Will contain device status eg connected
home/room/ledstrip/status Current ON/OFF status 1/0
home/room/ledstrip/brightness/status Current brightness level, number 0-100
home/pingallresponse This will contain status after you send pingall request and all devices should respond

Result

Click the image to play video on YouTube:

LED Strip dimming with Siri, Homebridge and NodeMCU (ESP8266)