13 lines
279 B
C++
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 */
|