Files
ESP-Nodes/ESP32-IDF_ESPNOW-Transmitter/main/config.c
2025-07-26 21:06:24 -04:00

13 lines
685 B
C

#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 receiver_mac[ESP_NOW_ETH_ALEN] = {0xe4, 0xb0, 0x63, 0x1b, 0xe5, 0x14}; // DEVBOARD
//uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
//uint8_t transmitter_mac[ESP_NOW_ETH_ALEN] = {0x34, 0xB7, 0xDA, 0xF9, 0x33, 0x8D};
const char *TAG = "ESP-NOW_Transmitter";