- Reduced price
Pick up your orders anytime, hassle-free!
Orders placed by 2:00 PM are shipped the same day. Delivered within 24h!
Reliable products, worry-free!
Unused items? No questions asked!
Flush-mount electric bolt lock, model 150A-NC, designed for access control on wooden, metal, or PVC doors. The NC (Normally Closed) version is fail-safe: it unlocks when power is removed (POWER OFF) and remains locked while powered. The electromagnetic design uses low-remanence materials for stable, long-life operation, and the compact body allows a discreet installation in the frame. Compatible with access controllers, intercoms, and exit buttons; provides status feedback via signal wires.
Connections (NPN transistor drive):
Arduino D8 → 1 kΩ resistor → transistor base (2N2222); emitter → GND; collector → one coil terminal; the other coil terminal → +12 V. Flyback diode across the coil (cathode to +12 V, anode to transistor side). Arduino GND common with the 12 V supply GND.
const byte PIN_LOCK = 8; // output to transistor/relay (fail-safe)
const byte PIN_BTN = 2; // button to GND (internal pull-up)
void setup() {
pinMode(PIN_LOCK, OUTPUT);
digitalWrite(PIN_LOCK, HIGH); // HIGH = powered -> locked
pinMode(PIN_BTN, INPUT_PULLUP);
}
void loop() {
if (digitalRead(PIN_BTN) == LOW) { // button pressed
digitalWrite(PIN_LOCK, LOW); // cut power -> unlock (POWER OFF)
delay(3000); // access time
digitalWrite(PIN_LOCK, HIGH); // power again -> lock
delay(250);
}
}
Specific References
Your review appreciation cannot be sent
Report comment
Report sent
Your report cannot be sent
Write your review
Review sent
Your review cannot be sent
check_circle
check_circle