Hall mágneses szenzor.
Egyszerű áramkör analóg Hall (49e), mágneses szenzorral
Alkalmas fordulatszám mérésére, robotokhoz, lineáris kapcsoló szenzornak, akár végállás érzékeléséhez is. pl: Arduino, AVR, PIC, mikroprocesszorokhoz, PLC-khez illesztéssel
Széles táplálási tartomány: working voltage: 5V (abs. max. 4.5-6.5V)
Megjegyzés: rendelhető digitális és analog kimenetű Hall szenzor modulok is, a kategóriában megtalálhatóak!
Nem invertált analóg szignál kimenettel.(Például 5V-os táplálás esetén mágnes nélkül az "S" szignál kimenet ~2.5V, mágnes közelítésére fokozatosan ~4.2V-ra emelkedik. Erősebb mágnes pl. neodímium esetén ~1cm-ről kezdi érzékelni)
Led visszajelzéssel: a led erőssége a szignálnak megfelelően világít.
Introduction
This module is analog hall sensor module, it can output an analog voltage at the
signal pin of this module. This module is different from hall magnetic sensor, which just output digital signal, like a magnetic switch.
Specification
Operation voltage: 5V (abs. max. 4.5-6.5V)
3Pin
Size:25*12mm
Weight: 8g
Pinout
Pin Description
S Analog output pin, real-time output voltage signal
+(middle pin) Power
- Ground
Example
In this example, this module will read the value of magnetic and print on the Serial
Monitor. These value can be reflect the intensity of environment magnetic.
Example Code:
int sensorPin = A5; // select the input pin
int ledPin = 13; // select the pin for the LED
int sensorValue = 0; // variable to store the value coming from the
sensor
void setup () {
pinMode (ledPin, OUTPUT);
Serial.begin (9600);
}
void loop () {
sensorValue = analogRead (sensorPin);
digitalWrite (ledPin, HIGH);
delay (sensorValue);
digitalWrite (ledPin, LOW);
delay (sensorValue);
Serial.println (sensorValue, DEC);
}