Buscar..


Sintaxis

  • pinMode(pin, pinMode) // Establece el pin en el modo definido.
  • digitalRead(pin); // Lee el valor de un pin digital especificado,

Parámetros

Parámetro Detalles
modo de pin Debe establecerse en INPUT o INPUT_PULLUP

Observaciones

Si el pin de entrada no se presiona LOW o HIGH, el valor flotará. Es decir, no será claramente un 1 o un 0, sino un punto intermedio. Para entrada digital, una resistencia pullup o desplegable es una necesidad.

Pulsador de lectura

Este es un ejemplo básico sobre cómo cablear y hacer que un LED se encienda / apague cuando se presiona el botón.

presionar el botón

/* Basic Digital Read
 * ------------------ 
 *
 * turns on and off a light emitting diode(LED) connected to digital  
 * pin 13, when pressing a pushbutton attached to pin 7. It illustrates the
 * concept of Active-Low, which consists in connecting buttons using a
 * 1K to 10K pull-up resistor.
 *
 * Created 1 December 2005
 * copyleft 2005 DojoDave <http://www.0j0.org>
 * http://arduino.berlios.de
 *
 */

int ledPin = 13; // choose the pin for the LED
int inPin = 7;   // choose the input pin (for a pushbutton)
int val = 0;     // variable for reading the pin status

void setup() {
  pinMode(ledPin, OUTPUT);  // declare LED as output
  pinMode(inPin, INPUT);    // declare pushbutton as input
}

void loop(){
  val = digitalRead(inPin);  // read input value
  if (val == HIGH) {         // check if the input is HIGH (button released)
    digitalWrite(ledPin, LOW);  // turn LED OFF
  } else {
    digitalWrite(ledPin, HIGH);  // turn LED ON
  }
}

Ejemplo tomado de Arduino.cc .



Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow