HB, OTA etc

This commit is contained in:
2026-04-22 20:11:55 +03:00
parent 4100931deb
commit cb1014c950
76 changed files with 3157 additions and 232 deletions

9
esp32/main/fw_command.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
typedef struct {
bool is_fw;
char url[256];
char sha256[65]; // 64 + \0
} fw_cmd_t;
bool parse_fw_command(const char *msg, fw_cmd_t *out);