Ky 024 Linear Magnetic Hall Sensor
Rs. 38.00 Rs. 46.00
- 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 Voltage(VDC) | 3.3 to 5 |
Shipment Weight | 0.085 kg |
Shipment Dimensions | 4 × 4 × 2 cm |
OVERVIEW:
-Operating Voltage: 3.3V-5V
-Features wide range voltage comparator LM393
-Adjustable sensitivity
-Signal output indicator with the retaining bolt hole, convenient installation
-Output form digital switch output (0 and 1 high and low level)
-The output effective signal is low level
-When there is sound, outputs low level and the signal light
-₹ 72.00 (inc GST)
-₹ 61.02 (+18% GST extra)
PACKAGE INCLUDES:
1 PCS x Ky 024 Linear Magnetic Hall Sensor
//SOURCE CODE TAKEN FROM BELOW LINK
//https://sensorkit.en.joy-it.net/index.php?title=KY-024_Linear_magnetic_Hall_Sensor
// Declaration and initialization of the input pin
int Analog_Eingang = A0; // X-axis-signal
int Digital_Eingang = 3; // Button
void setup ()
{
pinMode (Analog_Eingang, INPUT);
pinMode (Digital_Eingang, INPUT);
Serial.begin (9600); // Serielle output with 9600 bps
}
// The program reads the current value of the input pins
// and output it via serial out
void loop ()
{
float Analog;
int Digital;
// Current value will be read and converted to the voltage
Analog = analogRead (Analog_Eingang) * (5.0 / 1023.0);
Digital = digitalRead (Digital_Eingang);
// and outputted here
Serial.print ("Analog voltage value:"); Serial.print (Analog, 4); Serial.print ("V, ");
Serial.print ("Extreme value:");
if(Digital==1)
{
Serial.println (" reached");
}
else
{
Serial.println (" not reached yet");
}
Serial.println ("----------------------------------------------------------------");
delay (200);
}
15 days