Checking in work so I don't lose it. Nothing's broke with the build.

This commit is contained in:
Jm
2021-01-01 21:20:34 -08:00
parent 925829dc58
commit 8295b88d96
6 changed files with 57 additions and 37 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "meshwifi/WebServerThread.h"
#include <Arduino.h>
// Thread for the HTTP Server
WebServerThread webServerThread;
WebServerThread::WebServerThread() : concurrency::OSThread("WebServerThread") {}
int32_t WebServerThread::runOnce()
{
DEBUG_MSG("WebServerThread::runOnce()\n");
return (1000 * 1);
}