Files
smart-rgb-esp32/lib/ota/ota.h
2025-07-29 17:41:21 +02:00

9 lines
125 B
C++

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