Ah49E Linear Hall Effect Sensor 49E Hall Element
Rs. 7.00 Rs. 9.00
- Brand: http://www.secsemi.com/products/Linear-Hall-ICs/SS49E.html
- Product Code: SEN-HALL
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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 |
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 Ah49E Linear Hall Effect Sensor 49E Hall Element
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