Reference Language | Libraries | Comparison | Changes
Reads the value from a specified digital pin, either HIGH or LOW.
digitalRead(pin)
pin: the number of the digital pin you want to read (int)
Sets pin 13 to the same value as pin 7, declared as an input.
If the pin isn't connected to anything, digitalRead() can return either HIGH or LOW (and this can change randomly).
The analog input pins can be used as digital pins, referred to as A0, A1, etc.
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.