-
• #2
That's intended -
digitalRead
automatically sets the pin state to input when you use it (in the same way you'd be surprised ifdigitalWrite
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 adigitalRead
while leaving the LED 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?