PX4-Autopilot/docs/uk/msg_docs/GimbalControls.md
PX4 Build Bot 30b6938f5e
New Crowdin translations - uk (#26552)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2026-03-05 14:01:38 +11:00

43 lines
2.6 KiB
Markdown

---
pageClass: is-wide-page
---
# GimbalControls (повідомлення UORB)
**TOPICS:** gimbal_controls
## Fields
| Назва | Тип | Unit [Frame] | Range/Enum | Опис |
| ------------------------------------- | ------------ | ---------------------------------------------------------------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| timestamp | `uint64` | | | time since system start (microseconds) |
| timestamp_sample | `uint64` | | | the timestamp the data this control response is based on was sampled |
| control | `float32[3]` | | | Normalized output. 1 means maximum positive position. -1 maximum negative position. 0 means no deflection. NaN maps to disarmed. |
## Constants
| Назва | Тип | Значення | Опис |
| ---------------------------------------------------------- | ------- | -------- | ---- |
| <a id="#INDEX_ROLL"></a> INDEX_ROLL | `uint8` | 0 | |
| <a id="#INDEX_PITCH"></a> INDEX_PITCH | `uint8` | 1 | |
| <a id="#INDEX_YAW"></a> INDEX_YAW | `uint8` | 2 | |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/GimbalControls.msg)
:::details
Click here to see original file
```c
uint64 timestamp # time since system start (microseconds)
uint8 INDEX_ROLL = 0
uint8 INDEX_PITCH = 1
uint8 INDEX_YAW = 2
uint64 timestamp_sample # the timestamp the data this control response is based on was sampled
float32[3] control # Normalized output. 1 means maximum positive position. -1 maximum negative position. 0 means no deflection. NaN maps to disarmed.
```
:::