49E Lm393 Linear Hall Effect Sensitivity Detection Module
Rs. 39.00 Rs. 45.00
- Brand: http://www.secsemi.com/products/Linear-Hall-ICs/SS49E.html
- Product Code: SEN-HALL
- Availability: In Stock
- For Bulk Order
9962060070
-This Hall Sensor Module used Hall Sensor - A3144E.
-The Hall Sensor measures the Hall Effect, that's a manufacturing of a voltage difference throughout an electrical conductor, transverse to an electric current inside the conductor as well as a magnetic subject perpendicular to the present day.
-The output of the Hall sensor switches low and activates while a magnetic subject perpendicular to the Hall sensor exceeds the BOP threshold, and it switches high and turns on whilst the magnetic field disappears.
-And the comparator circuit that makes the output signal greater reliability.
• The current of the signal output can up to 16mA
• With the comparator circuit, The output signal is more reliability
• Breakout PINs
• 3mm screw hole
• Power supply indicator and Digital output indicator
| -VCC | 3.3V to 5.5v |
| -GND | GND |
| -DO | Digital Output, Output Low when there is a magnetic field |
| -AO | Analog Output, |
| -Dimension | 32mm x 14mm |
| -Power supply voltage | 3.3v to 5.5v |
| SPECIFICATIONS: | |
| Operating Supply Current | 3.5 mA |
| Maximum Output Current | 10 mA |
| Operating Supply Voltage | 3 V to 6.5 V |
| Minimum Operating Temperature | – 40 C |
| Maximum Operating Temperature | + 85 C |
| Mounting Style | Through Hole |
| Package/Case | TO-92S-3 |
| Output Voltage | 2.5 V |
| Sensitivity | 1.6 mV/GS |
| Termination Style | Through Hole |
| Supply Voltage – Max | 6.5 V |
| Supply Voltage – Min | 3 V |
| Unit Weight | 100 mg |
| VCC | 3.3V to 5.5v |
| GND | GND |
| DO | Digital Output, Output Low when there is a magnetic field |
| AO | Analog Output, |
| Dimension | 32mm x 14mm |
| Power supply voltage | 3.3v to 5.5v |
| OVERVIEW: | |
| -Product type | 49E Hall effect sensor |
| -Number of pins | 3 |
| -Colour and shape | as shown in image |
-Miniature construction
PACKAGE INCLUDES:
1 PCS x 49E Lm393 Linear Hall Effect Sensitivity Detection Module
http://www.secsemi.com/products/Linear-Hall-ICs/SS49E.html
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.electronoobs.com/eng_arduino_tut82.php
const int pinHall = A0;
void setup() {
pinMode(pinHall, INPUT);
Serial.begin(9600);
}
void loop() {
//we measure 10 times adn make the mean
long measure = 0;
for(int i = 0; i < 10; i++){
int value =
measure += analogRead(pinHall);
}
measure /= 10;
//voltage in mV
float outputV = measure * 5000.0 / 1023;
Serial.print("Output Voltaje = ");
Serial.print(outputV);
Serial.print(" mV ");
//flux density
float magneticFlux = outputV * 53.33 - 133.3;
Serial.print("Magnetic Flux Density = ");
Serial.print(magneticFlux);
Serial.print(" mT");
delay(2000);
}
15 DAYS
