Arduino Nano ESP32 - Control Heating Element
This tutorial provides instructions on how to use Arduino Nano ESP32 to control a Heating Element. Based on this tutorial, you will learn how to make a heating system in another tutorial.
Hardware Preparation
Or you can buy the following sensor kits:
1 | × | DIYables Sensor Kit (30 sensors/displays) | |
1 | × | DIYables Sensor Kit (18 sensors/displays) |
Additionally, some of these links are for products from our own brand, DIYables.
Overview of Heating Element
Pinout
Heating Element usually has two pins:
- Positive (+) pin (red): needs to be connected to 12V of DC power supply
- Negative (-) pin (black): needs to be connected to GND of DC power supply
How to Control Heating Element
If 12V Heating Element is powered by 12V power supply, it emits heat. To control a Heating Element, we need to use a relay in between Arduino Nano ESP32 and Heating Element. Arduino Nano ESP32 can control the Heating Element via the relay. If you do not know about relay (pinout, how it works, how to program ...), learn about relay in the Arduino Nano ESP32 - Relay tutorial
Wiring Diagram
This image is created using Fritzing. Click to enlarge image
Arduino Nano ESP32 Code
The below code repeatedly turns the Heating Element ON in five seconds and OFF in five seconds,
Detailed Instructions
- Connect Arduino Nano ESP32 to PC via USB cable
- Open Arduino IDE, select the right board and port
- Copy the above code and paste it to Arduino IDE
- Compile and upload code to Arduino Nano ESP32 board by clicking Upload button on Arduino IDE
- Check the Heating Element's temperature
WARNING
Please be careful. It can burn you and your house. This is a serious topic, and we want you to be safe. If you’re NOT 100% sure what you are doing, do yourself a favor and don’t touch anything. Ask someone who knows! We do NOT take any responsibility for your safety.
Code Explanation
The above Arduino Nano ESP32 code contains line-by-line explanation. Please read the comments in the code!