Tuesday, April 23, 2024

ESP32-based LED Lamp using IoT

In this IoT LED Lamp project, we handle the output pin of ESP32 for switching and dimming a DC LED lamp using a local Web server. For a local Web server, we do not need an Internet connection; we can handle everything over Wi-Fi.

To make this IoT project work, we use additional circuitry, because LED being of high power cannot be directly controlled by ESP32.

Author's Prototype for IoT LED Lamp
Fig. 1: Author’s Prototype for IoT LED Lamp

Material needed to get started with IoT LED Lamp

1. ESP32 NodeMCU (Check the datasheet from the Internet, if you are using a different version.)

ESP32 Development Board
Fig. 2: ESP32 Development Board

2. USB Type C cable to program ESP32 from a laptop or PC—most Android phones use this type of cable.

USB Type C cable
Fig. 3: USB Type C cable

3. 20W 12V DC LED with heat-sink, which will act as the lamp to control over Wi-Fi.

- Advertisement -
20W 12V DC LED lamp with heat-sink
Fig. 4: 20W 12V DC LED lamp with heat-sink

4. NPN BD-139 transistor to control brightness or, technically, voltage supplied to LED. We will drive its base voltage through ESP32.

5. 470-ohm resistor for BD-139 base and IN4007 diode to protect the circuit from any reverse voltages from 12V supply.

Resistor and diode
Fig. 6: Resistor and diode

6. Regulated 12V supply from a battery eliminator or a charger with 12V 1A rating.

- Advertisement -

7. Some wires and a breadboard.

Steps for software setup for setting up IoT LED Lamp

(Note: Ignore this step if you already have ESP32 board setup in Arduino IDE)

Arduino IDE + ESP32 Support
Fig. 7: Arduino IDE + ESP32 Support

To code ESP32, we need an integrated development environment (IDE). We use Arduino IDE software. Arduino IDE is a cross-platform application, written in Java and coded in C/C++ with some special rules. Download the latest Arduino IDE from here.

Arduino IDE does not contain support for the ESP32 family. To install ESP32 Board in Arduino IDE, refer here.

Connection and wiring

Follow these connections to setup the circuit.

Circuit diagram
Fig. 8: Circuit diagram

In the circuit, we drive the base voltage of BD139 using ESP32 pin 21. Base voltage controls the flow of potential between collector and emitter of BD139. This is an application of a transistor in an amplifying region. Now, we can control voltage and, hence, the brightness of an LED.

Remember to check the ESP32 datasheet. General-purpose input-output (GPIO) pin numbers are mentioned on its back.

Back side of ESP32
Fig. 9: Back side of ESP32

Power ESP32 using 5V supply (current not more than 500mA), or directly plug it in with the help of a USB or powerbank. LED will be powered depending on its need—some are 12V, whereas others are 5V (current<=1A).

Note: All grounds must be common.

The code

Download the code from the link given below, and open it in Arduino IDE.

Before uploading, you need to make some changes in the code. Edit Wi-Fi name and password here, within double-quotes.

Enter Wi-Fi details here in the code
Fig. 10: Enter Wi-Fi details here in the code

These three lines can be removed if the ESP board does not have any Brownout error.

Remove indicated lines if your code does not have any Brownout error
Fig. 11: Remove indicated lines if your code does not have any Brownout error

In the code, #include, helps Arduino IDE to run the functions of ESP32. This library contains all Wi-fi.xxxx functions used in the code.

Unfortunately, ESPs still do not have an analogWrite function. So, we will have to create one. Here, we made ledcAnalogWrite and defined the values that will be used in that function.

Defining values in the code
Fig. 12: Defining values in the code

In void setup(){}, perform all setups needed for running the main program, like baud rate in Serial.begin(), Wi-Fi initialisations, pin mode setup, brightness function setup and start the server from Server.begin().

Setup for ESP32 in the code
Fig. 13: Setup for ESP32 in the code

In void loop(), we have our main program.

Code main loop
Fig. 14: Code main loop

Our aim is to first create a Web Page on the server and then attach it with various buttons. To create this Web page, we need HTML code embedded in Arduino Code like this.

HTML page code in Arduino code
Fig. 15: HTML page code in Arduino code

This will hit some buttons on the Web page, which can be redirected to set the brightness of the DC LED.

HTML functions to set brightness
Fig. 16: HTML functions to set brightness

After value for brightness is set, we can write these values in analogWrite function we created for ESP32.

AnalogWrite function call for brightness
Fig. 17: AnalogWrite function call for brightness

Save the code.

Now, go to Tools>Boards Manager>ESP32 Dev Module. Then, go to Tools>Upload Speed>115200. Select your COM port.

COM port of Arduino
Fig. 18: COM port of Arduino

Upload the code, and power up everything.

Connecting the Webserver

After uploading the code, go to Open Tools>Serial Monitor. ESP32 will try to connect to Wi-Fi and display its IP address on Arduino serial monitor.

Wi-Fi connected
Fig. 19: Wi-Fi connected

Make sure that the Wi-Fi router to be connected is already open. Hit this IP address in the browser of the device connected to the same Wi-Fi.

Url: http://192.168.xx.xx (your IP displayed in Arduino serial monitor)

You will be able to see the HTML Web page mentioned in the code.

HTML Web view
Fig. 20: HTML Web view

Control dimming through these levels seen on the Web page.

Dimming control for IoT LED Lamp
Fig. 21: Dimming control for IoT LED Lamp

Check the similar Lamp project.

Download Source Code


1 COMMENT

SHARE YOUR THOUGHTS & COMMENTS

Unique DIY Projects

Electronics News

Truly Innovative Tech

MOst Popular Videos

Electronics Components

Calculators