The MT470 Loop Detector is an electronic device manufactured by NORTECH, designed to detect the presence of vehicles at intersections or similar traffic scenarios. It operates by sensing changes in the inductance of a wire loop that is embedded in the pavement. When a vehicle passes over or stops on the loop, the detector triggers a response, typically to control traffic signals or activate barrier mechanisms.
Pin Number | Description | Notes |
---|---|---|
1 | Power Supply + | Connect to 10-30 VDC or 12-24 VAC |
2 | Power Supply - | Ground connection |
3 | Relay Normally Open (NO) | Relay contact opens when loop is inactive |
4 | Relay Common (COM) | Common relay contact |
5 | Relay Normally Closed (NC) | Relay contact closes when loop is inactive |
6 | Frequency Adjust | Set loop frequency |
7 | Sensitivity Adjust | Set detection sensitivity |
8 | Loop Connection 1 | Connect to loop wire 1 |
9 | Loop Connection 2 | Connect to loop wire 2 |
Q: Can the MT470 be used with any size loop? A: The MT470 is designed to work with a range of loop sizes, but the loop dimensions should be within the manufacturer's recommended guidelines for optimal performance.
Q: How do I know if the loop detector is functioning correctly? A: The MT470 typically has LED indicators that show the status of the loop and detection. Refer to the manufacturer's manual for specific indicator meanings.
Q: What is the maximum length of cable that can be used between the loop and the detector? A: The maximum cable length depends on the wire gauge and the total loop resistance. Consult the manufacturer's specifications for detailed information.
Q: Can the MT470 operate in extreme weather conditions? A: The MT470 is rated for operation in temperatures ranging from -40°C to +70°C. However, ensure that the loop installation is suitable for the local environmental conditions.
// Example code to demonstrate how to interface the MT470 Loop Detector with an Arduino UNO
// The relay output from the MT470 is connected to digital pin 2 on the Arduino
const int loopDetectorPin = 2; // MT470 relay output connected to digital pin 2
const int ledPin = 13; // Onboard LED connected to digital pin 13
void setup() {
pinMode(loopDetectorPin, INPUT_PULLUP); // Set the loop detector pin as input with pull-up
pinMode(ledPin, OUTPUT); // Set the LED pin as output
}
void loop() {
// Check if the loop detector's relay is closed (vehicle detected)
if (digitalRead(loopDetectorPin) == LOW) {
digitalWrite(ledPin, HIGH); // Turn on the LED
} else {
digitalWrite(ledPin, LOW); // Turn off the LED
}
}
This example assumes that the relay output from the MT470 is connected to the Arduino's digital pin 2. When the loop detector detects a vehicle, the relay closes, pulling the input to LOW and turning on the onboard LED. When no vehicle is detected, the relay is open, and the LED is off.