An electric lock, manufactured by OEM (Part ID: Lock), is a locking mechanism that operates using electrical power. It can be controlled remotely or through various access control systems such as keypads, card readers, or biometric scanners. This component is widely used in security systems to provide enhanced safety and convenience. Electric locks are commonly found in residential, commercial, and industrial applications, including doors, safes, and cabinets.
The following table outlines the key technical details of the OEM Electric Lock:
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Operating Current | 0.5A (500mA) |
Power Consumption | 6W |
Lock Type | Fail-Safe (unlocks when power is off) |
Material | Stainless Steel |
Holding Force | 800N (~80kg) |
Dimensions | 120mm x 40mm x 30mm |
Weight | 500g |
Operating Temperature | -10°C to 55°C |
Manufacturer | OEM |
Part ID | Lock |
The electric lock typically has two wires for operation. The pin configuration is as follows:
Wire Color | Function | Description |
---|---|---|
Red | Positive (+12V) | Connect to the positive terminal of the power supply. |
Black | Ground (GND) | Connect to the ground terminal of the power supply. |
Below is an example of how to control the electric lock using an Arduino UNO and a relay module:
// Example: Controlling an Electric Lock with Arduino UNO
// Components: Arduino UNO, Relay Module, Electric Lock, 12V Power Supply
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
// Lock the door (turn off the relay)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the door locked for 5 seconds
// Unlock the door (turn on the relay)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the door unlocked for 5 seconds
}
Note: Ensure the relay module is rated for 12V DC and can handle the current required by the electric lock.
The lock does not operate:
The lock gets hot during operation:
The lock does not align with the strike plate:
The lock unlocks unexpectedly:
Q: Can the electric lock be used outdoors?
A: The lock is not weatherproof. Use it indoors or in a protected environment.
Q: What happens during a power outage?
A: The lock operates in a fail-safe mode and will unlock when power is lost.
Q: Can I control the lock with a smartphone?
A: Yes, if integrated with a smart home system or IoT controller.
Q: Is the lock compatible with 24V DC?
A: No, the lock is designed for 12V DC operation only. Using 24V may damage the lock.
This concludes the documentation for the OEM Electric Lock (Part ID: Lock). For further assistance, refer to the manufacturer's support resources.