For purity of experiment I've cleaned the code and left it with just the single pin inicialized as OUTPUT, and pull it HIGH with digitalWrite
while( 1 ){
digitalWrite(LED, 1);
delay (2000);
digitalWrite(LED, 1);
delay (2000);
}
this is what I see
do you see that ripple? it about 0.1Hz or so.
The bright LED, being connected, distinctly blinking (for normal LED it is not really obvious). All GPIOs behaving similarly. Could anybody give any hint, why this coud happen?