When I run following blink code it stays 10s on HIGH which is the opposite behavior.
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(2000);
digitalWrite(LED_BUILTIN, LOW);
delay(10000);
}
I also checked the WifiNina > Ap_SimpleWebServer example and clicking on High link actually turns off the LED and vice versa. I also tried with 0 and 1 instead of LOW and HIGH respectively to see if constant values has changed.