Wish List 0

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
-The Linear Magnetic Hall sensor module and a digital interface, built-in 13 LED build a simple circuit to produce a magnetic field warning lamp comes with digital interfaces of the LED, the linear Hall sensor magnetometer access number 3 interface, when linear Hall magnetometer Sensor senses a key signal, LED lights, otherwise off.
-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, Schmitt 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.
-A magnetic field is detected by the sensor and will be printed as an analog voltage value. You can control the sensitivity of the sensor with the potentiometer.

Pins:
-VCC     :2.3V  5.3V
-GND   :power supply ground
-AOUT  :MCU.IO (analog output)
-DOUT  :MCU.IO (digital output)

Applications:
-Motor speed measurement
-Object position detection
-Smart car
-Electronic bricks

Features:
-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)
-Signal output indication
-Single channel signal output
-The output effective signal is low level
-When there is sound, outputs low level and the signal light
-Can be used for Acoustic control light, give sound and light alarm working with the Photosensitive sensor, and sound control, sound detect
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

Write a review

Please login or register to review