In this project we have used Solenoid Door Lock Circuit with Arduino, as Solenoid lock works like magnet latch and then Arduino control it using small signal.
With few parts and simple wiring, we can create automatic locking system for our home or office, also its a very easy and very useful circuit and is good for DIY security system.
Arduino Code:
int lockPin = 7;
void setup() {
pinMode(lockPin, OUTPUT);
}
void loop() {
digitalWrite(lockPin, HIGH);
delay(3000);
digitalWrite(lockPin, LOW);
delay(3000);
}Coding Explanation:
- lockPin is the pin that controls solenoid.
- In setup Arduino sets pin as output.
- In loop code turns pin HIGH.
- Solenoid gets power and lock opens.
- Delay waits 3 seconds.
- digitalWrite LOW turns solenoid OFF and lock closes.
- Second delay waits 3 seconds and repeats.
Circuit Working:

Parts List:
| Components | Quantity |
|---|---|
| Arduino UNO | 1 |
| Solenoid Lock | 1 |
| DC 12V Power Supply | 1 |
| 5V Single Channel Relay Module | 1 |
| USB Connector | 1 |
Arduino cannot give 12V to solenoid directly, so we used relay module and relay work like electric switch.
Arduino give 5V signal to relay coil and then relay coil activates and makes the relay click; also when relay clicks, it connects 12V supply to solenoid lock.
After that, lock pulls inside and door unlocks and when Arduino sends LOW signal then relay turns OFF and relay breaks 12V line.
Then solenoid lock loses power and locks back and finally, Arduino just controls the relay and relay controls solenoid.
Formula with Calculation:
Formula for solenoid current:
I = V / R
where,
- I is the current
- V is the voltage
- R is the resistance
So, I = V / R means:
Current = Voltage divided by Resistance.
How to Build:
To build a Solenoid Door Lock Circuit with Arduino follow the below connection steps:
- First, gather all the parts as shown in circuit diagram.
- Next, connect Arduino 5V pin to relay module VCC pin., connect Arduino GND pin to relay GND pin and then connect Arduino digital pin D7 to relay IN pin.
- After that, take DC 12V supply positive wire and connect it to relay COM pin.
- Now connect relay NO (Normally Open) pin to positive wire of solenoid lock.
- Then connect negative wire of solenoid lock to 12V supply negative.
- Finally, connect Arduino to laptop using USB connector for programming.
Conclusion:
To conclude, this Solenoid Door Lock Circuit with Arduino can safely control a solenoid lock; also, the circuit is good for door locks, drawers, cabinets and basic home automation.
Leave a Reply