Arduino Reed Switch

by dev.alessiobigini in Circuits > Arduino

81345 Views, 48 Favorites, 0 Comments

Arduino Reed Switch

WP_20150309_001-700x393.jpg

Hello everyone!

The Reed devices are electronic or electromechanical components that work using the technology of the reed contacts, realized for the first time by the Bell.

The Reed contact switch is a lamina (normally open) which closes in the presence of a magnetic field.

The reed contacts have found use in the production of various types of sensors. There are two modes of use of these contacts:

simple pure contacts, for the detection of a magnetic field; complex equipment, in which the reed contact is used as the transduction element. In this guide I'll show you how to use this switch to turn on an LED.

The Circuit

Cattura-di-schermata-21.png

We will need:

- Arduino Uno

- Breadboard (base)

- Wires for links

- Reed Switch

- A resistor 10KOhm

- A resistor 220ohm

- An LED

Once procured components assemble the circuit:

Downloads

The Sketch

Now we can load the sketch on our board.

const int pinSwitch = 12; //Pin Reed

const int pinLed = 9; //Pin LED

int StatoSwitch = 0;

void setup()

{

pinMode(pinLed, OUTPUT); //Imposto i PIN

pinMode(pinSwitch, INPUT);

}

void loop()

{

StatoSwitch = digitalRead(pinSwitch); //Leggo il valore del Reed

if (StatoSwitch == HIGH)

{

digitalWrite(pinLed, HIGH);

}

else

{

digitalWrite(pinLed, LOW);

}

}

Downloads

Video

Arduino: Reed Switch