* ESP-NOW experiment with terminal-chat

This commit is contained in:
Scott Powell 2025-03-24 21:16:00 +11:00
parent f33e1b22b3
commit 7bd7bfb14a
6 changed files with 182 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#include <Arduino.h>
#include "target.h"
ESP32Board board;
ESPNOWRadio radio;
bool radio_init() {
radio.begin();
return true; // success
}