From 4dd4af0dc1e49d32baccf286d90ab76c08009de9 Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sat, 5 Jul 2025 00:30:04 -0400 Subject: [PATCH] receiver --- ESP32-IDF_ESPNOW-Receiver/main/config.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ESP32-IDF_ESPNOW-Receiver/main/config.c diff --git a/ESP32-IDF_ESPNOW-Receiver/main/config.c b/ESP32-IDF_ESPNOW-Receiver/main/config.c new file mode 100644 index 000000000..6fe08fc09 --- /dev/null +++ b/ESP32-IDF_ESPNOW-Receiver/main/config.c @@ -0,0 +1,9 @@ +#include "config.h" + +uint8_t broadcast_mac[ESP_NOW_ETH_ALEN] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; +//uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0x9c, 0x9e, 0x6e, 0x14, 0xb5, 0x54}; +// ESP32-C3 Breadboard Robot Receiver +//uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0xe4, 0xb0, 0x63, 0x17, 0x9e, 0x45}; +uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0xe4, 0xb0, 0x63, 0x17, 0x9e, 0x44}; +uint8_t transmitter_mac[ESP_NOW_ETH_ALEN] = {0x34, 0xB7, 0xDA, 0xF9, 0x33, 0x8D}; +const char *TAG = "ESP-NOW_Transmitter"; \ No newline at end of file