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

9 lines
135 B
C
Raw Permalink Normal View History

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