Search found 1 match
- Mon Mar 18, 2024 6:23 am
- Forum: General Discussion
- Topic: Using espnow to control a brushless rc car
- Replies: 0
- Views: 665
Using espnow to control a brushless rc car
This the code I am using #include <esp_now.h> #include <WiFi.h> #include <ESP32Servo.h> #define SIGNAL_TIMEOUT 1000 // This is signal timeout in milli seconds. We will reset the data if no signal unsigned long lastRecvTime = 0; typedef struct PacketData { byte lxAxisValue; byte lyAxisValue; }PacketD...