Ky 021 Mini Dry Reed Pipe Module
Rs. 32.00 Rs. 39.00
- Product Code: SEN-REED
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-A Mini Dry Reed Pipe Module is a magnetic sensor that is normally open and gets closed when exposed to a magnetic field.
-The Mini Dry Reed Pipe Module consists of a 10kΩ resistor and a small reed switch actuated by a magnetic field, commonly used in mechanical systems as proximity sensors.
-Compatible with popular electronic platforms like Arduino, Teensy, etc.
Features:
-This module is ideally suited to adding a magnetic switch to your project.
-Apply to a switchboard, duplicator, washing machine, refrigerator, camera, electronic scale, gas meter, and water meter, etc
SPECIFICATIONS: | |
Operating Voltage | 3.3V to 5v |
Output Type | Digital |
Length (mm) | 15 |
Width (mm) | 13 |
Height (mm) | 5 |
Weight (gm) | 6 |
Shipment Weight | 0.05 kg |
Shipment Dimensions | 3 × 2 × 1 cm |
OVERVIEW: | |
Operating Voltage | 3.3V to 5v |
Output Type | Digital |
PACKAGE INCLUDES:
1 PCS x Ky 021 Mini Dry Reed Module
//SOURCE CODE TAKEN FROM BELOW LINK
//https://arduinomodules.info/ky-021-mini-magnetic-reed-switch-module/
int led = 13; // LED pin
int reelSwitch = 2; // magnetic senso rpin
int switchState; // variable to store reel switch value
void setup()
{
pinMode (led, OUTPUT);
pinMode (reelSwitch, INPUT);
}
void loop()
{
switchState = digitalRead(reelSwitch); // read the value of digital interface 2 and assign it to switchState
if (switchState == HIGH) // when the magnetic sensor detect a signal, LED is flashing
{
digitalWrite(led, HIGH);
}
else
{
digitalWrite(led, LOW);
}
}
15 days