

The Actuator Hall Effect sensor, manufactured by TRU Components (Part ID: TC-13492796), is a precise and reliable device designed to detect magnetic fields and convert them into electrical signals. This component leverages the Hall effect principle, making it ideal for applications requiring non-contact position sensing, speed detection, or proximity sensing.
Common applications include:








The following table outlines the key technical details of the TC-13492796 Actuator Hall Effect sensor:
| Parameter | Value |
|---|---|
| Supply Voltage (Vcc) | 3.3V to 24V |
| Output Voltage | 0.4V (low) to Vcc (high) |
| Output Type | Digital (open-drain or push-pull) |
| Operating Current | 5 mA (typical) |
| Magnetic Sensitivity | ±5 mT to ±50 mT |
| Operating Temperature | -40°C to +125°C |
| Response Time | <10 µs |
| Package Type | TO-92 or SOT-23 |
The TC-13492796 is available in two common package types: TO-92 and SOT-23. Below is the pin configuration for each:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Vcc | Power supply (3.3V to 24V) |
| 2 | GND | Ground |
| 3 | OUT | Digital output signal |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Vcc | Power supply (3.3V to 24V) |
| 2 | OUT | Digital output signal |
| 3 | GND | Ground |
The TC-13492796 can be easily interfaced with an Arduino UNO for magnetic field detection. Below is an example circuit and code:
// Define the pin connected to the sensor's output
const int hallSensorPin = 2;
// Define an LED pin for visual feedback
const int ledPin = 13;
void setup() {
pinMode(hallSensorPin, INPUT); // Set the sensor pin as input
pinMode(ledPin, OUTPUT); // Set the LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorState = digitalRead(hallSensorPin); // Read the sensor's output
if (sensorState == HIGH) {
// Magnetic field detected
digitalWrite(ledPin, HIGH); // Turn on the LED
Serial.println("Magnetic field detected!");
} else {
// No magnetic field detected
digitalWrite(ledPin, LOW); // Turn off the LED
Serial.println("No magnetic field.");
}
delay(100); // Small delay for stability
}
No Output Signal:
Unstable Output:
False Triggering:
Q: Can the sensor detect both north and south poles of a magnet?
A: Yes, the TC-13492796 can detect both poles, but the output behavior may vary depending on the polarity.
Q: What type of magnets work best with this sensor?
A: Neodymium magnets are recommended due to their strong and consistent magnetic fields.
Q: Can I use this sensor for analog output?
A: No, the TC-13492796 provides a digital output only. For analog output, consider using a linear Hall effect sensor.
Q: Is the sensor waterproof?
A: The sensor itself is not waterproof. If used in wet environments, ensure proper encapsulation or housing.