Turn off blue LED (Arduino pin 13)
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:
Hope this helps
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 IDEHope this helps