Files
meshtastic_firmware/src/mesh/wifi/WebServerThread.h
T
2021-01-08 20:06:11 -08:00

21 lines
301 B
C++

#pragma once
#include "concurrency/OSThread.h"
#include "configuration.h"
#include <Arduino.h>
#include <functional>
class WebServerThread : private concurrency::OSThread
{
public:
WebServerThread();
protected:
virtual int32_t runOnce();
};
extern WebServerThread *webServerThread;