We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0a8d878 + 5fabf52 commit f72af51Copy full SHA for f72af51
examples/SimpleWebServerWiFi/SimpleWebServerWiFi.ino
@@ -101,10 +101,10 @@ void loop() {
101
102
// Check to see if the client request was "GET /H" or "GET /L":
103
if (currentLine.endsWith("GET /H")) {
104
- digitalWrite(9, HIGH); // GET /H turns the LED on
+ digitalWrite(LED_BUILTIN, HIGH); // GET /H turns the LED on
105
}
106
if (currentLine.endsWith("GET /L")) {
107
- digitalWrite(9, LOW); // GET /L turns the LED off
+ digitalWrite(LED_BUILTIN, LOW); // GET /L turns the LED off
108
109
110
0 commit comments