Files
smart-rgb-esp32/lib/ota/ota.h

9 lines
135 B
C++

#pragma once
#include <string_view>
class OTAHandler {
public:
OTAHandler(std::string_view hostname);
void poll();
};