mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-08 01:32:05 +00:00
11 lines
192 B
C
11 lines
192 B
C
/*
|
|
ESPNOW RC Controller Module
|
|
*/
|
|
|
|
#ifndef RECEIVER_H
|
|
#define RECEIVER_H
|
|
|
|
void onDataReceived (uint8_t *mac_addr, uint8_t *data, uint8_t data_len);
|
|
static void rc_task (void *arg);
|
|
|
|
#endif |