basic webserver

This commit is contained in:
Florian Hoss 2022-04-10 15:55:42 +02:00
parent eb3dbcaffc
commit f94639c1a0
3 changed files with 48 additions and 7 deletions

View file

@ -1,12 +1,14 @@
#include <Arduino.h>
#include "theWifi.h"
#include "theServer.h"
void setup()
{
connectWifi();
setup_wifi();
setup_server();
}
void loop()
{
// put your main code here, to run repeatedly:
handle_server_clients();
}