RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33

  • 🚪 RC-33 / MC-33 recessed magnetic door switch sensor
  • 🧲 Reed switch + magnet for open/close detection
  • 🔔 Perfect for home security alarms and access monitoring
  • 🛠️ Recessed (embedded) installation for a clean hidden look
  • ⚡ Rated up to DC 100V / 300mA (contact rating)
  • 🔌 Simple 2-wire NO/NC contact (depends on model wiring)
  • 🧩 Works with alarm panels, Arduino, ESP32, and smart home systems
  • ✅ Reliable door/window status sensor for long-term use
SKU: EK1350 Category: Tag:

Apple Shopping Event

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

65,00 EGP

14 People watching this product now!

Payment Methods:

Description

Description:

1.NC means Normally Closed:When the magnet together, the circuit is conductive( light on ); when the magnet separate, the circuit is not conductive ( light off ). When make order,pls check carefully!

2.These are the door contact sensors that are in use with any and all commercial or residential card access systems as well as all security burglar alarm system.

3.Work as an anti-theft alarm, ideal for metal door and window.

 

Specification:

Product Name: Magnetic Door Switch

Model: RC-33

Contact Type: NC (Normally Closed) ;NO(Normally Open) 

Max. Actuation Distance: 10mm

Max. Current: 0.5A

Max. Contact Power: 10W

Working Voltage: DC100V

Each Size(Approx): 17.5 x 11mm

Cable Length(Each): 26cm / 10.2-inch

Material: ABS (Housing)

Wire Type: 1007UL#24AWG

Color: Brown,White

 

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
RC-33Wire 1/Wire 2board digital pin (INPUT_PULLUP) / GND
📟
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - Arduino Uno
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - Arduino Nano
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - Arduino Mega
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - ESP32
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - ESP8266
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - STM32
RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 - Raspberry Pi Pico
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_arduino_uno.inoArduino Uno
328 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Arduino Uno
6#define SWITCH_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_arduino_nano.inoArduino Nano
329 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Arduino Nano
6#define SWITCH_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_arduino_mega.inoArduino Mega
329 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Arduino Mega
6#define SWITCH_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_esp32.inoESP32
322 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 4 on ESP32
6#define SWITCH_PIN 4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_esp8266.inoESP8266
326 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin D4 on ESP8266
6#define SWITCH_PIN D4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_stm32.inoSTM32
326 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin PB4 on STM32
6#define SWITCH_PIN PB4
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
📄 File: rc-33_recessed_door_magnetic_switch_door_magnet_alarm_detector_sensor_home_security_alarm_dc_100v_300ma_mc-33_-_raspberry_pi_pico.inoRaspberry Pi Pico
334 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Digital pin 2 on Raspberry Pi Pico
6#define SWITCH_PIN 2
7
8void setup() {
9 Serial.begin(115200);
10 pinMode(SWITCH_PIN, INPUT_PULLUP);
11}
12
13void loop() {
14 int state = digitalRead(SWITCH_PIN);
15 Serial.println(state == LOW ? "Door: TRIGGERED" : "Door: idle");
16 delay(200);
17}
Recessed reed switch for doors - same wiring/logic as any reed switch.

نظرة عامة ومواصفات المنتج — بالعربية

RC-33 Recessed Door Magnetic Switch Door Magnet Alarm Detector Sensor Home Security Alarm DC 100V 300mA MC-33 متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 65,00 EGP. كود المنتج لدينا: EK1350. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Name: RC-33 / MC-33 Recessed Door Magnetic Switch (Alarm Sensor)
  • Category: Security Sensor → Magnetic Reed Switch
  • Type: Recessed / Hidden Door Contact
  • الموديل: RC-33 / MC-33
  • Contact Type: Reed Switch (NO/NC depends on variant)
  • Max Switching Voltage: DC 100 V
  • Max Switching Current: 300 mA
  • طريقة التثبيت: Recessed (Drill-in)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Product NameRC-33 / MC-33 Recessed Door Magnetic Switch (Alarm Sensor)
CategorySecurity Sensor → Magnetic Reed Switch
TypeRecessed / Hidden Door Contact
ModelRC-33 / MC-33
Contact TypeReed Switch (NO/NC depends on variant)
Max Switching VoltageDC 100 V
Max Switching Current300 mA
Mounting TypeRecessed (Drill-in)
InstallationDoor + Frame (magnet + switch)
Cable TypeWired (2-wire, typical)
Applicationshome security alarms, door/window open detection, access control systems

Customer Reviews