why does digitalRead of an LED turn it off?

Posted on
  • Whilst working on an addition ontop of UART.js ive found that digitalRead(LED) will turn off LED is this a bug or intended?

  • That's intended - digitalRead automatically sets the pin state to input when you use it (in the same way you'd be surprised if digitalWrite didn't change the pin state to an output).

    You can manually set the pin mode with pinMode though, and then it won't change state after that so you can do a digitalRead while leaving the LED on.

  • Post a reply
    • Bold
    • Italics
    • Link
    • Image
    • List
    • Quote
    • code
    • Preview
About

why does digitalRead of an LED turn it off?

Posted by Avatar for callummclu @callummclu

Actions