From 6c68652a18e0def604ab122c3b4410b2449b2a3c Mon Sep 17 00:00:00 2001 From: Javi Date: Fri, 31 Jul 2020 15:39:37 -0300 Subject: [PATCH] Update HelloServer.ino Change name esp8266 for esp32 in welcome message --- libraries/WebServer/examples/HelloServer/HelloServer.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/WebServer/examples/HelloServer/HelloServer.ino b/libraries/WebServer/examples/HelloServer/HelloServer.ino index f67b049c3ce..1a1180c2593 100644 --- a/libraries/WebServer/examples/HelloServer/HelloServer.ino +++ b/libraries/WebServer/examples/HelloServer/HelloServer.ino @@ -12,7 +12,7 @@ const int led = 13; void handleRoot() { digitalWrite(led, 1); - server.send(200, "text/plain", "hello from esp8266!"); + server.send(200, "text/plain", "hello from esp32!"); digitalWrite(led, 0); }