ESP-NOW Transmitter

This commit is contained in:
2025-06-17 22:55:06 -04:00
parent 0d1fd98fbd
commit a010a74182
2 changed files with 1 additions and 1 deletions

View File

@@ -59,7 +59,7 @@ void rc_send_data_task()
while (true) {
if (esp_now_is_peer_exist(receiver_mac))
sendData();
vTaskDelay (250 / portTICK_PERIOD_MS);
vTaskDelay (1000 / portTICK_PERIOD_MS);
}
}