Skip to Content

Magnetic Door Sensor MC38 Kit (NC)

The MC-38 Normally Closed Magnetic Contact Reed Switch Kit is a key component in home security systems, designed to detect the opening and closing of doors or windows. This kit offers quick response, high reliability, and easy installation, making it ideal for residential, commercial, and industrial security applications.

Package Includes:

  • 1 x MC-38 Wired Magnetic Sensor Kit (Normally Closed)

22.50 AED 22.50 AED Tax Included
22.50 AED Tax Included

Not Available For Sale

This combination does not exist.

Magnetic Switch and Sensor

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days

 

Features:

  • Reliable Monitoring: Detects the opening/closing of doors and windows for real-time alerts.
  • Easy Installation: Double-sided foam adhesive included for both magnetic and switching parts.
  • Durable Housing: Protective plastic or metal casing ensures long-lasting performance.
  • Reed Switch Technology: Ensures fast and accurate detection using magnetic fields.
  • Instant Switching: Activates/deactivates within 18mm ± 6mm of magnetic proximity.
  • Normally Closed (NC) Configuration: Circuit remains closed when doors/windows are shut.
  • Wide Voltage Support: Rated for 12V and can withstand up to 100VDC.
  • Load Current: Handles up to 300mA for compatibility with most alarm systems.

Specifications:

  • Model: MC-38 NC
  • Material: Plastic + Magnet
  • Color: White
  • Size: 27 x 14 x 7.6 mm
  • Action Distance: 18mm ± 6mm
  • Rated Voltage: 12V
  • Withstand Voltage: 100VDC
  • Load Current: 300mA

Principle of Operation:

  1. When the magnet (mounted on door/window) is near the switch, the reed switch remains closed (circuit complete).
  2. When the door/window opens, the magnet moves away, breaking the magnetic field and opening the circuit.
  3. This change is detected by the alarm system, triggering an alert or action.

Pinout:

MC-38 Sensor Pinout

  • 2-wire connection (no polarity): Connect either wire to the positive/negative terminal of the alarm system.

Arduino Example Code:

const int reedSwitchPin = 2;
const int ledPin = 13;
int reedSwitchState = 0;

void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(reedSwitchPin, INPUT);
  Serial.begin(9600);
}

void loop() {
  reedSwitchState = digitalRead(reedSwitchPin);
  if (reedSwitchState == HIGH) {
    digitalWrite(ledPin, HIGH);
    Serial.println("Door or window closed");
  } else {
    digitalWrite(ledPin, LOW);
    Serial.println("Door or window open");
  }
  delay(500);
}

Applications:

  • Home and commercial security systems
  • Access control systems
  • Industrial enclosures and asset protection
  • Building automation for smart energy use
  • Vehicle door/window detection
  • IoT-connected remote monitoring systems

Circuit Diagram:

MC-38 Sensor Circuit

Comparison with Optical Sensors:

Aspect MC-38 Reed Switch Optical Sensor
Technology Magnetic field Light intensity detection
Cost Lower Higher
Installation Simple, adhesive Requires clear line of sight
Susceptibility To magnetic interference To ambient light
Range ~18mm ± 6mm Several cm
Applications Door/window state detection Motion, proximity, light sensing