We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4368ba commit 0291a6eCopy full SHA for 0291a6e
libraries/esp8266/examples/Blink/Blink.ino
@@ -17,7 +17,7 @@ void setup() {
17
void loop() {
18
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
19
// but actually the LED is on; this is because
20
- // it is acive low on the ESP-01)
+ // it is active low on the ESP-01)
21
delay(1000); // Wait for a second
22
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
23
delay(2000); // Wait for two seconds (to demonstrate the active low LED)
0 commit comments