The Halim 05 Magnetic Lock (commonly referred to as a maglock) is an electronic locking device that utilizes an electromagnet to secure doors. This component is widely used in access control systems, providing a robust and reliable locking mechanism that can be controlled remotely. Its applications range from residential and commercial buildings to industrial facilities, ensuring security and controlled access.
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Current Draw | 500mA |
Holding Force | 600 lbs (272 kg) |
Dimensions | 250mm x 48mm x 25mm |
Weight | 2.5 kg |
Operating Temperature | -10°C to 55°C |
Humidity | 0% to 95% (non-condensing) |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply input (12V DC) |
2 | GND | Ground |
3 | NC | Normally Closed contact |
4 | COM | Common contact |
5 | NO | Normally Open contact |
To integrate the Halim 05 Magnetic Lock into a circuit, follow these steps:
Below is an example of how to control the Halim 05 Magnetic Lock using an Arduino UNO and a relay module.
Arduino UNO Relay Module Magnetic Lock
----------- ------------ -------------
5V ----------- VCC
GND ----------- GND
D7 ----------- IN
GND ----------- GND
COM ------------- VCC (12V DC)
NO ------------- VCC (Magnetic Lock)
NC ------------- GND (Magnetic Lock)
// Magnetic Lock Control using Arduino UNO
const int relayPin = 7; // Pin connected to relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Initially turn off the relay
}
void loop() {
// Example: Lock the door
digitalWrite(relayPin, HIGH); // Turn on the relay to lock the door
delay(5000); // Keep the door locked for 5 seconds
// Example: Unlock the door
digitalWrite(relayPin, LOW); // Turn off the relay to unlock the door
delay(5000); // Keep the door unlocked for 5 seconds
}
Magnetic Lock Not Engaging:
Lock Generates Excessive Heat:
Lock Not Holding Properly:
Relay Not Controlling the Lock:
Q1: Can I use a different voltage power supply?
Q2: How do I know if the lock is engaged?
Q3: Can I control the lock with a different microcontroller?
Q4: What happens if there is a power failure?
This documentation provides a comprehensive guide to using the Halim 05 Magnetic Lock. By following the instructions and best practices outlined, you can ensure reliable and secure operation in your access control systems.