WifiEspNow
ESP-NOW Arduino library for ESP8266 and ESP32
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Public Member Functions | List of all members
WifiEspNowBroadcastClass Class Reference

#include <WifiEspNowBroadcast.h>

Public Member Functions

bool begin (const char *ssid, int channel=1, int scanFreq=15000)
 Initialize ESP-NOW with pseudo broadcast. More...
 
void end ()
 Stop ESP-NOW. More...
 
void loop ()
 Refresh peers if scanning is due. More...
 
bool setKey (const uint8_t primary[WIFIESPNOW_KEYLEN], const uint8_t peer[WIFIESPNOW_KEYLEN]=nullptr)
 Set encryption keys. More...
 
void onReceive (WifiEspNowClass::RxCallback cb, void *arg)
 Set receive callback. More...
 
bool send (const uint8_t *buf, size_t count)
 Broadcast a message. More...
 

Member Function Documentation

◆ begin()

bool WifiEspNowBroadcastClass::begin ( const char *  ssid,
int  channel = 1,
int  scanFreq = 15000 
)

Initialize ESP-NOW with pseudo broadcast.

Parameters
ssidAP SSID to announce and find peers.
channelAP channel, used if there is no STA connection.
scanFreqhow often to scan for peers (milliseconds).
Returns
whether success.

◆ end()

void WifiEspNowBroadcastClass::end ( )

Stop ESP-NOW.

◆ loop()

void WifiEspNowBroadcastClass::loop ( )

Refresh peers if scanning is due.

This should be invoked in Arduino sketch loop() function.

◆ onReceive()

void WifiEspNowBroadcastClass::onReceive ( WifiEspNowClass::RxCallback  cb,
void *  arg 
)
inline

Set receive callback.

Parameters
cbthe callback.
argan arbitrary argument passed to the callback.
Note
Only one callback is allowed; this replaces any previous callback.

◆ send()

bool WifiEspNowBroadcastClass::send ( const uint8_t *  buf,
size_t  count 
)
inline

Broadcast a message.

Parameters
bufpayload.
countpayload size, must not exceed WIFIESPNOW_MAXMSGLEN .
Returns
whether success (message queued for transmission).

◆ setKey()

bool WifiEspNowBroadcastClass::setKey ( const uint8_t  primary[WIFIESPNOW_KEYLEN],
const uint8_t  peer[WIFIESPNOW_KEYLEN] = nullptr 
)

Set encryption keys.

Parameters
primaryprimary key, also known as KOK or PMK.
peerpeer key, also known as LMK; nullptr to disable encryption. The same peer key is applied to every discovered peer.
Returns
whether success.

The documentation for this class was generated from the following files: