The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.The 3144 sensor can detect the presence of a magnetic field and a output logic level.
The Hall-Effect Sensor Digital 3144 can detect the the presence or absence of a magnetic field and outputs a logic level.
Hall-effect sensors are commonly used for measuring the speed of rotating assemblies where a magnet on the assembly alternately makes and breaks magnetic contact with the sensor as the assembly rotates. They can also be used for applications such as determining when a door has been opened, position sensing and detecting the magnetic field created by current flow in a wire.
The 3144 sensor can detect the basic presence of the magnetic field, but not the relative strength. The side of the sensor with the labeling is the side used for detection and detects the one pole of the magnet. The other side of the device will detect the other pole of the magnet. If the sensor does not seem to be detecting the magnet, try reversing it.
Hall-effect sensors have several advantages over mechanic switches, chief among them are that by being solid-state, there is no concern about contacts wearing out and the switching speed can be quite high, as fast as 2uS.
The main challenge with using Hall-effect sensors usually resides around the mounting of the sensor and any associated magnets.
The sensor can operate over a Vcc range of 4.5-24V.
If the output is being read by an MCU, it is advisable to operate the sensor at the same voltage as the MCU so that the sensor output will be compatible with the digital input on the MCU
It is possible to power the device off a 5V MCU digital output pin.
The sensor output is open collector. A pull-up resistor of about 10K is normally used to pull the output high. This can be an external resistor or can be a built-in pull-up resistor on the MCU input. When a magnetic field is detected, the sensor pulls the output LOW.
When the sensor output goes LOW, it can sink up to 25mA of current.
The output is typically read by a digital pin on an MCU. Optionally in some cases it may be able to drive a secondary circuit directly.
Hall-effect sensors are quite useful in a number of applications and one of the more under utilized electronic components available to hobbyists. These particular sensors are used in many of the digital hall effect sensor modules that come out of China.
The program below monitors the output of the sensor and reports when it detects a state change. Simply hook the sensor up to 5V and ground and connect the sensor output pin to a digital pin on the MCU. We use pin D4 in this example but this can be any digital input pin.
After downloading, open the Serial Monitor window to see the output. If the state does not change when the magnet is brought near, try reversing the magnet (swap north & south ends).
/* Digital Hall Effect Module Test Basic code for monitoring the output of the sensor. Connect Output pin of sensor to D4 and connect 5V and Ground */ int sensorPin = 4; // Arbitrary digital pin for monitoring the output int state = 0; // Current state of the sensor int lastState = 0; //Place to save our previous state //=============================================================================== // Initialization //=============================================================================== void setup() { pinMode (sensorPin, INPUT_PULLUP); // Enable pull-up as sensor output is open collector Serial.begin (9600); // Set output window comm rate } //=============================================================================== // Main //=============================================================================== void loop() { state = digitalRead (sensorPin); // Read the current state of the sensor if (state != lastState) // State has changed, so print out new state { Serial.print ("Current State: "); Serial.println (state); lastState = state; // Remember last state we were in } }
Notes:
Operating Ratings | Vcc Range | 4.5 – 24V |
Output | No magnetic field detected | Pulled to Vcc by pull-up resistor |
Magnetic field detected | Pulled to ground by sensor | |
Maximum Current | Sinking | 25mA |
Package | SIP-3L | |
Package Type | Plastic, thru-hole | |
Mfr | China | |
Datasheet | 3144 Hall Effect Sensor |
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!