The A3144 is the workhorse hall effect switch: bring a south pole near its marked face and the output pulls LOW, take the magnet away and it releases again. It is unipolar, so a north pole does nothing at all, which is the single most common reason one appears dead on the bench. Runs on anything from 4.5V to 24V, so it drops straight into 5V logic, 12V and 24V systems alike.
- Digital on/off output, not a field measurement
- Unipolar: only a south pole triggers it
- Releases as soon as the magnet leaves
- Wide 4.5V to 24V supply range
- Open collector output, needs a pull-up
- Reads LOW when a magnet is detected
- Fast switching, no contact bounce
- Works with Arduino, ESP32 and Raspberry Pi
- TO-92 package, breadboard friendly
- Marked “3144 609” on the flat face
How it works
Specifications
| Model | A3144, marked “3144 609” |
| Sensor type | Unipolar hall effect switch |
| Supply voltage | 4.5V to 24V DC |
| Output type | Digital, open collector (active low) |
| Output state | LOW while a south pole is present, HIGH otherwise |
| Magnetic polarity | South pole on the marked face triggers it. North does nothing. |
| Pull-up resistor | Required, or use the microcontroller's internal pull-up |
| Response | Fast switching, no mechanical bounce to debounce |
| Package | TO-92, 3-pin, 1.27mm lead pitch |
| Pinout | Marked face toward you, legs down: 1 VCC / 2 GND / 3 OUT |
| Sensing face | Flat (marked) face of the TO-92 body |
| Operating temp | -40°C to +85°C |
| Body size | Approx. 4.1mm wide, 4.0mm tall, leads 13.5mm+ |
| SKU | A3144-HALL-TO92 |
Wiring & getting started
- Hold the sensor with the flat marked face toward you, legs pointing down. Pins 1, 2, 3 run left to right.
- Pin 1 -- VCC: anywhere from 4.5V to 24V. On an ESP32 use the 5V rail, not 3.3V.
- Pin 2 -- GND: common ground of your circuit.
-
Pin 3 -- OUT: to a digital input, with a pull-up.
pinMode(pin, INPUT_PULLUP)saves fitting a resistor. -
Read it inverted:
digitalRead(pin) == LOWmeans a magnet is detected. HIGH means none. - If nothing happens, turn the magnet around. Only the south pole triggers a unipolar switch.
Great for
One magnet on a wheel or shaft, counted on an interrupt pin, gives clean revolution counting.
Non-contact open/closed sensing that will not wear out like a mechanical switch.
A contactless replacement for microswitches, unaffected by dust or repeated homing.
Detect presence through plastic, glass or a sealed enclosure wall.
Limit detection and index marks where a contact switch would be fragile.
A solid-state alternative to reed switches, with no glass envelope to break.
Good to know: the sensing element sits in the flat marked face, not the rounded back, so point that side at your magnet. Small neodymium magnets work far better than flexible fridge magnets, which are often too weak to trigger it. If you need the output to stay on after the magnet leaves, you want a latch such as the 41F or US1881 instead. Shipped from our Te Awamutu stock.
