basic webserver
This commit is contained in:
parent
eb3dbcaffc
commit
f94639c1a0
3 changed files with 48 additions and 7 deletions
|
@ -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();
|
||||
}
|
Reference in a new issue