Minor change but could confuse some (#4084)

This commit is contained in:
ToXIc 2020-09-30 13:26:38 +01:00 committed by GitHub
parent f30edd040e
commit b551310c37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ const int led = 13;
void handleRoot() { void handleRoot() {
digitalWrite(led, 1); digitalWrite(led, 1);
server.send(200, "text/plain", "hello from esp8266!"); server.send(200, "text/plain", "hello from esp32!");
digitalWrite(led, 0); digitalWrite(led, 0);
} }