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
Board
Sensor Pin
Connection
Solenoid
to switching transistor/relay
coil leads into a flyback-diode-protected switch, gated by a board digital pin
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.
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
8voidsetup() {
9Serial.begin(115200);
10pinMode(SOLENOID_PIN, OUTPUT);
11digitalWrite(SOLENOID_PIN, LOW);
12}
13
14voidloop() {
15digitalWrite(SOLENOID_PIN, HIGH); // energize
16delay(1000);
17digitalWrite(SOLENOID_PIN, LOW); // release
18delay(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.
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.
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.
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
8voidsetup() {
9Serial.begin(115200);
10pinMode(SOLENOID_PIN, OUTPUT);
11digitalWrite(SOLENOID_PIN, LOW);
12}
13
14voidloop() {
15digitalWrite(SOLENOID_PIN, HIGH); // energize
16delay(1000);
17digitalWrite(SOLENOID_PIN, LOW); // release
18delay(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
8voidsetup() {
9Serial.begin(115200);
10pinMode(SOLENOID_PIN, OUTPUT);
11digitalWrite(SOLENOID_PIN, LOW);
12}
13
14voidloop() {
15digitalWrite(SOLENOID_PIN, HIGH); // energize
16delay(1000);
17digitalWrite(SOLENOID_PIN, LOW); // release
18delay(3000);
19}
Electromagnetic actuator - simple on/off (energize/release), switched through a transistor or relay, not PWM-speed-controlled like a motor.
Specification
Specification
WeightWeight
40 g
Dimensions
4 × 3 × 3 cm
Product Name
Electromagnet Solenoid Lock – 10mm 12V 600mA
Type
Solenoid Electromagnet Lock
Operating Voltage
12V DC
Current
600 mA
Lock Stroke
10 mm
Material
Metal body with coil
Color
Silver / Metallic
Applications
Electronic door locks, security systems, DIY access control, automation projects