Turn off blue LED (Arduino pin 13)

userHead LattePanda 2016-07-29 11:55:36 3732 Views3 Replies
The blue LED on your LattePanda is actually the Arduino's pin 13 LED. If you don't like it flashing you can disable it by uploading a blank Arduino sketch like so:

Code: Select all

void setup () {} void loop () {} If you do like it, you can also play with different flashing and fade sequences, such as the "fade" example in Arduino IDE

Hope this helps