You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Farm-Data-Relay-System/Examples/ESPNOW_Stress_Test/ESPNOW_Stress_Test.ino

20 lines
298 B
C++

// FARM DATA RELAY SYSTEM
//
// ESP-NOW Stress Tester or "Spammer"
//
// Sends ESP-NOW packets at approximately 60Hz.
//
#include "fdrs_sensor.h"
void setup() {
beginFDRS();
}
void loop() {
for (int i=0; i < 255; i++) {
loadFDRS(float(i), IT_T);
sendFDRS();
delay(15);
}
}