From b551310c37662008c3c940262844617cba267108 Mon Sep 17 00:00:00 2001 From: ToXIc <4998146+ToXIc-Dev@users.noreply.github.com> Date: Wed, 30 Sep 2020 13:26:38 +0100 Subject: [PATCH] Minor change but could confuse some (#4084) --- 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 f67b049c..1a1180c2 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); }