Electromagnet Solenoid Lock 10mm 12V 600mA

  • 10mm Stroke Length: Retracts pin when powered
  • 12V DC Operation: Low-power with 600mA current draw
  • Strong Holding Force: Ideal for electronic door locks
  • Durable Metal Build: Reliable for cabinets, lockers, and access systems
  • Quick Response: Fast locking/unlocking for automation projects

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

300,00 EGP

16 People watching this product now!

Payment Methods:

Description

An electromagnet solenoid lock with specifications 10mm, 12V, 600mA is commonly used in security applications like cabinets, drawers, lockers, and access control systems. Here’s a breakdown of its features:

Specifications:

  • Voltage: 12V DC
  • Current Draw: ~600mA
  • Stroke Length (Plunger Travel): 10mm
  • Holding Force: Typically varies (check specific model), but often around 1-5kg
  • Operation: Electromagnetic; when powered, the solenoid pulls in or releases the plunger
  • Material: Metal housing for durability
  • Mounting: Usually has screw holes for secure attachment
  • Type: Fail-secure or fail-safe (depends on wiring setup)
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Solenoidto switching transistor/relaycoil leads into a flyback-diode-protected switch, gated by a board digital pin
📟
Electromagnet Solenoid Lock 10mm 12V 600mA
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Electromagnet Solenoid Lock 10mm 12V 600mA - Arduino Uno
Electromagnet Solenoid Lock 10mm 12V 600mA - Arduino Nano
Electromagnet Solenoid Lock 10mm 12V 600mA - Arduino Mega
Electromagnet Solenoid Lock 10mm 12V 600mA - ESP32
Electromagnet Solenoid Lock 10mm 12V 600mA - ESP8266
Electromagnet Solenoid Lock 10mm 12V 600mA - STM32
Electromagnet Solenoid Lock 10mm 12V 600mA - Raspberry Pi Pico
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_arduino_uno.inoArduino Uno
529 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin 7 on Arduino Uno.
6#define SOLENOID_PIN 7
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_arduino_nano.inoArduino Nano
530 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin 7 on Arduino Nano.
6#define SOLENOID_PIN 7
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_arduino_mega.inoArduino Mega
530 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin 7 on Arduino Mega.
6#define SOLENOID_PIN 7
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_esp32.inoESP32
525 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin 13 on ESP32.
6#define SOLENOID_PIN 13
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_esp8266.inoESP8266
527 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin D3 on ESP8266.
6#define SOLENOID_PIN D3
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_stm32.inoSTM32
527 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin PB2 on STM32.
6#define SOLENOID_PIN PB2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
📄 File: electromagnet_solenoid_lock_10mm_12v_600ma_-_raspberry_pi_pico.inoRaspberry Pi Pico
537 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Electromagnet Solenoid Lock 10mm 12V 600mA draws too much current for a GPIO pin directly - switch it through a flyback-diode-protected transistor or relay, gated by pin 17 on Raspberry Pi Pico.
6#define SOLENOID_PIN 17
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SOLENOID_PIN, OUTPUT);
11 digitalWrite(SOLENOID_PIN, LOW);
12}
13
14void loop() {
15 digitalWrite(SOLENOID_PIN, HIGH); // energize
16 delay(1000);
17 digitalWrite(SOLENOID_PIN, LOW); // release
18 delay(3000);
19}
Electromagnetic actuator - simple on/off (energize/release), switched through a transistor or relay, not PWM-speed-controlled like a motor.

Specification

Specification

WeightWeight40 g
Dimensions4 × 3 × 3 cm
Product NameElectromagnet Solenoid Lock – 10mm 12V 600mA
TypeSolenoid Electromagnet Lock
Operating Voltage12V DC
Current600 mA
Lock Stroke10 mm
MaterialMetal body with coil
ColorSilver / Metallic
ApplicationsElectronic door locks, security systems, DIY access control, automation projects
FeaturesCompact design, reliable locking, easy installation

Customer Reviews