mirror of
https://github.com/meshtastic/firmware.git
synced 2026-02-02 19:51:15 -05:00
18 lines
364 B
C++
18 lines
364 B
C++
#include "mesh/wifi/WebServerThread.h"
|
|
#include "meshwifi/meshhttp.h"
|
|
#include <Arduino.h>
|
|
|
|
WebServerThread *webServerThread;
|
|
|
|
WebServerThread::WebServerThread() : concurrency::OSThread("WebServerThread") {}
|
|
|
|
int32_t WebServerThread::runOnce()
|
|
{
|
|
//DEBUG_MSG("WebServerThread::runOnce()\n");
|
|
handleWebResponse();
|
|
|
|
// Loop every 5ms.
|
|
return (5);
|
|
}
|
|
|