Add wifi and ota

This commit is contained in:
2025-07-29 17:41:21 +02:00
parent ff442f5650
commit d80a58f72c
7 changed files with 197 additions and 11 deletions

9
lib/ota/ota.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <string>
class OTAHandler {
public:
OTAHandler(std::string hostname);
void poll();
};