Description :Working voltage:4.5V-24VSeries 3144, hall switch integrated circuit using hall effect principle, USES the semiconductor integrated technology manufacturing magnetic susceptibility of the circuit, it is by the voltage regulator, hall voltage generator, differential amplifier, schmidt triggers, temperature compensation and the open collector output stage circuit composed of magnetic sensitive sensor circuit, its input for the magnetic induction intensity, the output is a digital voltage signal.Hall magnetic sensor module and a digital 13 interface with LED build a simple circuit, to produce a magnetic flasher .Use digital 13 interface with the LED, the Hall magnetic sensor connected to the force plate number 3 for ARDUINO interface. When the Hall magnetic sensor to a magnetic field signal , LED lights on, versa lights off.Reference Program:int Led=13;// Definition LED Interfaceint SENSOR=3;// Define the Hall magnetic sensor interfaceint val;// Defines a numeric variable valvoid setup(){pinMode(Led,OUTPUT);// Definition LED as output interfacepinMode SENSOR,INPUT);// Defined the Hall magnetic sensor as output interface}void loop(){val=digitalRead(SENSOR);// The digital interface is assigned a value of 3 to read valif(val==HIGH)// When the shock sensor detects a signal , LED flashes {digitalWrite(Led, HIGH);}Else{digitalWrite(Led, LOW);}}Question: Can it be used directly with Arduino/Raspberry pi?Answer: Yes Question: Does it come with LED?Answer: Yes. Question: What is the mounting hole diameter and centers dimensions? Answer: By my measurements, the pcb is 19x15mm and the holes are 10mm apart from centers with 1.5mm diameters
Trustpilot
1 day ago
4 days ago