Wish List 0

Ky 003 Ss49E Linear Hall Effect Sensor Module

Rs. 16.00 Rs. 20.00

  • Product Code: SEN-HALL
  • SKU -
  • Availability: In Stock
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-Analogy Hall Magnetic Sensors are 3144 Series Hall principle of Hall effect switch IC, using technology to produce magnetic semiconductor integrated circuit, which is determined by the voltage regulator, Hall voltage generator, differential amplifier, Schmidt trigger, temperature compensation circuit, and the collector electrode open-circuit output stage consisting of the magnetic sensing circuit, the input for the magnetic flux density, the output is a digital voltage signal.
-Analog magnetic sensor module and a digital interface, built-in 13 LED build a simple circuit to produce a magnetic flash.

Features:
-Small size
-High sensitivity
-Fast response temperature
-good performance
-Precision and high reliability
SPECIFICATIONS:
Type                    Magnetic Sensor Module
Mainly Compatible with  Arduino
Weight(g)               2
Dimension(mm)           30 x 15 x 6
OVERVIEW:
Type                    Magnetic Sensor Module
Mainly Compatible with  Arduino

PACKAGE INCLUDES:

1 PCS x Ky 003 Ss49E Linear Hall Effect Sensor Module


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/WellTronic/ky-003-hall-sensor-module-6c003a

//**********************************************************************************************************//

// Author: 

// WellTronic

//

// Description:

// This code is part of a video series covering all Arduino sensors from the Arduino sensor kit.

// One of the sensors in this video series is the Hall sensor.

//

// In this video I will explain step by step how to use the Hall sensor

// https://www.youtube.com/watch?v=hV8mqPxEAUY

//

// You're also welcome to take a look at the YouTube channel for more details about hardware and software.

// https://www.youtube.com/channel/UC0UCNqE8i4unG8nfuakd0vw

// 

// Enjoy working with this sensor and see you soon :) !

//

//**********************************************************************************************************//


int hallSensorPin = 4;

int hallSensorValue = 0;


void setup() {

  // put your setup code here, to run once:

Serial.begin(9600);

pinMode(hallSensorPin,INPUT);

}


void loop() {

  // put your main code here, to run repeatedly:


hallSensorValue = digitalRead(hallSensorPin);

Serial.print("hallSensorValue: ");

Serial.println(hallSensorValue);


}

15 days

Write a review

Please login or register to review