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

9 lines
125 B
C
Raw Normal View History

2025-07-29 17:41:21 +02:00
#pragma once
#include <string>
class OTAHandler {
public:
OTAHandler(std::string hostname);
void poll();
};