mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-19 09:12:45 +00:00
Final checkin of WiFi and basic HTTP server
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
#include "configuration.h"
|
||||
#include "main.h"
|
||||
#include "NodeDB.h"
|
||||
#include "meshwifi.h"
|
||||
#include "meshhttp.h"
|
||||
#include "meshwifi/meshwifi.h"
|
||||
#include "meshwifi/meshhttp.h"
|
||||
|
||||
|
||||
WebServer webserver(80);
|
||||
@@ -14,6 +14,10 @@ String sender = "";
|
||||
|
||||
|
||||
void handleWebResponse() {
|
||||
if (isWifiAvailable() == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
webserver.handleClient();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user