Add ESP-NOW master/slave discovery on DIP network channel.

Initialize WiFi and ESP-NOW from shared app config; master broadcasts
discover packets and collects slave info, slaves respond on matching
network while UART commands stay master-only.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-18 22:16:19 +02:00
co-authored by Cursor
parent bde4c473ef
commit 54f2a7de5b
5 changed files with 358 additions and 22 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef ESP_NOW_COMM_H
#define ESP_NOW_COMM_H
#include "app_config.h"
#include "esp_err.h"
esp_err_t esp_now_comm_init(const app_config_t *config);
#endif