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
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