Files
2026-07-19 17:49:47 -05:00

13 lines
279 B
C++

#ifndef BBNOW_HPP
#define BBNOW_HPP
#include "esp_now.h"
/// The channel to use if not on a WIFI network
#define BBNOW_DEFAULT_CHANNEL 6
const static uint8_t BROADCAST_MAC[ESP_NOW_ETH_ALEN] = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
void init_espnow();
#endif /* BBNOW_HPP */