According to the hardware schematic, there are 2 leds on this board, one that indicated battery charging and the second connected to IO11
try as i might, I cannot seem to switch off the second LED programatically.
In theory, all that is required is:
pinMode(11, OUTPUT);
digitalWrite(11, LOW);
but unfortunately noting happens.
Can you give any advice as to where I may be going wrong ?