Arduino Nano ESP32 - Electromagnetic Lock
The electromagnetic lock (also known as magnetic lock, maglock, or EM lock) is an important component of the door lock system. This tutorial provides instructions on how to use Arduino Nano ESP32 to control the electromagnetic lock.
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 Electromagnetic Lock
Electromagnetic Lock Pinout
The electromagnetic Lock is composed of two components:
- Armature plate: this part is attached on the moving part of the door
- Electromagnet: this part is attached on the door frame. it has two wires, which are connected to power source.
When the door is closed, two components are in contact with each other.
How Electromagnetic Lock Works
- When the electromagnet is powered ⇒ the electromagnet attracts to armature plate ⇒ lock
- When the electromagnet is NOT powered ⇒ the electromagnet does NOT attract to armature plate ⇒ unlock
The electromagnetic lock uses high voltage (12V, 24V or 48V...) power supply. Therefore, we need to use a relay in between the electromagnetic lock and Arduino Nano ESP32 pin. See Arduino Nano ESP32 - Relay tutorial.
If we connect the electromagnetic lock to a relay in normally open mode and use an Arduino Nano ESP32 pin to control the relay:
- When the Arduino Nano ESP32 pin is LOW ⇒ the relay is open ⇒ door is unlocked
- When the Arduino Nano ESP32 pin is HIGH ⇒ the relay is closed ⇒ door is locked
Wiring Diagram between Electromagnetic Lock and ES32
This image is created using Fritzing. Click to enlarge image
Arduino Nano ESP32 Code
The below code lock/unlock the door every 5 seconds
Detailed Instructions
- If this is the first time you use Arduino Nano ESP32, see how to setup environment for Arduino Nano ESP32 on Arduino IDE.
- 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
- Put the armature plate close to electromagnet.
- See the attraction between armature plate and electromagnet.