This commit is contained in:
2025-07-06 12:04:50 -04:00
parent eddb51c0a5
commit 86df9a3ea9
8 changed files with 14 additions and 10 deletions

View File

@@ -2,8 +2,9 @@ DATA STRUCTS
============
The struct serves as the data payload for sending control signals from the transmitting device to the receiver using ESP-NOW.
In addition, it may contain additional data such as telemetry, battery status, etc. The *sensors_data_t* struct is designed as a data payload that encapsulates all control commands and sensor states relevant to the vehicle's operation.
It's intended to be sent from a transmitting device (like a remote control or master controller) to a receiver (such as a microcontroller onboard the vehicle).
In addition, it may contain additional data such as telemetry, battery status, etc. The *sensors_data_t* struct encapsulates all control commands and sensor states
relevant to the vehicle's operation. It's intended to be sent from a transmitting device (like a remote control or master controller) to a receiver
(such as a microcontroller onboard the vehicle).
.. code-block:: c