Skip to Content

KY-024 Linear Magnetic Hall Sensor Speed Counting Sensor Module

https://circuitsnepal.odoo.com/web/image/product.template/38/image_1920?unique=75c7a29

KY024 Linear Hall Effect sensor module for precise magnetic field measurements. Provides an analog output proportional to the magnetic field strength. Ideal for speed sensing, position sensing, and applications requiring accurate magnetic field detection.

0.00 ₨ 0.0 NPR 0.00 ₨

0.00 ₨

Not Available For Sale

This combination does not exist.

Free Delivery is available on orders worth Rs.2000 or more!

Terms and Conditions

Shipping: 2-3 Business Days

Product Description:


Specifications:

SpecificationValue
Sensor TypeHall Effect
OutputAnalog
Power Supply3.3V - 5V
Output VoltageProportional to magnetic field strength
MountingThrough-hole or surface mount
DimensionsApproximately 32mm x 14mm

Features:

  • Linear Output: Provides an analog output voltage proportional to the magnetic field strength.
  • High Sensitivity: Detects even weak magnetic fields.
  • Small Size: Compact module for easy integration into projects.
  • Wide Applications: Ideal for speed sensing, position sensing, and proximity detection.


How To Use:


Using the KY-024 Hall Effect Sensor Module with Arduino:

Required Components:

  • Arduino board (e.g., Uno, Nano)
  • KY-024 Hall Effect Sensor Module
  • Jumper wires
  • Magnet (for testing)

Wiring:

  1. Power: Connect the +5V pin of the module to the 5V pin of the Arduino.
  2. Ground: Connect the GND pin of the module to the GND pin of the Arduino.
  3. Output: Connect the AO pin of the module to an analog pin on the Arduino (e.g., A0).

Arduino Code:

C++

const int hallSensorPin = A0;

void setup() {
  Serial.begin(9600);
}

void loop() {
  int sensorValue = analogRead(hallSensorPin);
  Serial.println(sensorValue);
  delay(100);
}

Explanation:

  1. Analog Read: The analogRead() function reads the analog voltage from the hall sensor pin and returns a value between 0 and 1023.
  2. Serial Output: The code prints the sensor value to the Serial Monitor.

Package Includes:


 1x KY-024 Linear Magnetic Hall Sensor Module

Our latest content

Check out what's new in our company !

Your Dynamic Snippet will be displayed here... This message is displayed because you did not provide both a filter and a template to use.