Hello guys,
I'm trying to test my ESP8266 with example of Blink from ESP8266 file but I don't know the schematic. I've been searching all day but couldn't find anything. Code will be;
int ledState = LOW;
unsigned long previousMillis = 0;
const long interval = 1000;
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
}
void loop()
{
unsigned long currentMillis = millis();
if(currentMillis - previousMillis >= interval) {
previousMillis = currentMillis;
if (ledState == LOW)
ledState = HIGH; // Note that this switches the LED off
else
ledState = LOW; // Note that this switches the LED on
digitalWrite(LED_BUILTIN, ledState);
}
}
Can someone show me the schematic?
Thanks in advance!