esp32-sk6812/include/UpdateServer.h

18 lines
262 B
C
Raw Normal View History

#pragma once
#include <string>
#include "ChallengeResponse.h"
class UpdateServer
{
public:
UpdateServer(const std::string &pw);
void start(void);
private:
static void updateTask(void *arg);
ChallengeResponse m_cr;
};