temp sensor

This commit is contained in:
2025-06-24 03:17:25 -04:00
parent edc324cf79
commit 195d4abf00

View File

@@ -165,4 +165,7 @@ void transmission_init()
devices.channel = 1; devices.channel = 1;
devices.encrypt = false; devices.encrypt = false;
esp_now_add_peer(&devices); esp_now_add_peer(&devices);
// Defince a task for periodically sending ESPNOW remote control data
xTaskCreate(rc_send_data_task, "RC", 2048, NULL, 4, NULL);
} }