domingo, 2 de agosto de 2015

switch boton led

En este ejemplo, mientras mantenemos apretado el boton el LED queda encendido (on/high) y cuando saltamos el boton el LED se apaga (off/low)


int LED = 3;
int BUTTON = 2;

void setup() {
  pinMode(LED, OUTPUT);
  pinMode(BUTTON, INPUT);

}

void loop() {
  if(digitalRead(BUTTON) == LOW) //cuando es presionado
    digitalWrite(LED, HIGH);
  else
    digitalWrite(LED, LOW);
  
}

No hay comentarios:

Publicar un comentario