mirror of
https://github.com/pelgraine/Meck.git
synced 2026-05-06 21:42:32 +02:00
12 lines
208 B
C++
12 lines
208 B
C++
#include <Arduino.h>
|
|
#include "target.h"
|
|
|
|
ESP32Board board;
|
|
|
|
ESPNOWRadio radio;
|
|
|
|
bool radio_init() {
|
|
// NOTE: radio.begin() is called by Dispatcher::begin(), so not needed here
|
|
return true; // success
|
|
}
|