From 1afe317c7d8e734bd7e307255fd30198b789782e Mon Sep 17 00:00:00 2001 From: Markus Date: Mon, 13 Mar 2017 17:25:10 +0100 Subject: [PATCH] improve LED example onchange to oninput #178 --- .../WebSocketServer_LEDcontrol/WebSocketServer_LEDcontrol.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/WebSocketServer_LEDcontrol/WebSocketServer_LEDcontrol.ino b/examples/WebSocketServer_LEDcontrol/WebSocketServer_LEDcontrol.ino index 152771d..f737d7f 100644 --- a/examples/WebSocketServer_LEDcontrol/WebSocketServer_LEDcontrol.ino +++ b/examples/WebSocketServer_LEDcontrol/WebSocketServer_LEDcontrol.ino @@ -100,7 +100,7 @@ void setup() { // handle index server.on("/", []() { // send index.html - server.send(200, "text/html", "LED Control:

R:
G:
B:
"); + server.send(200, "text/html", "LED Control:

R:
G:
B:
"); }); server.begin();