diff --git a/simple_web/simple_web.ino b/simple_web/simple_web.ino index 157c8f0..fe966cf 100644 --- a/simple_web/simple_web.ino +++ b/simple_web/simple_web.ino @@ -51,6 +51,8 @@ void setup() { digitalWrite(LED_BUILTIN, LOW); request->send(200, "text/plain", "Was there ever anything here?"); }); + + server.onNotFound(notFound); server.begin();