Disabling Status LED

it definitely works on photon:

LEDSystemTheme theme; // Enable custom theme

void setup() {
  theme.setColor(LED_SIGNAL_CLOUD_CONNECTED, RGB_COLOR_WHITE); // breathes white when cloud connected
  theme.apply(); // Apply theme settings 
}

void loop() {
}