Files
PX4-Autopilot/docs/ko/msg_docs/ActuatorServos.md
2026-06-08 08:45:02 +10:00

52 lines
3.6 KiB
Markdown

---
pageClass: is-wide-page
---
# ActuatorServos (UORB message)
Servo control message.
Normalised output setpoint for up to 15 servos.
Published by the vehicle's allocation and consumed by the actuator output drivers.
**TOPICS:** actuator_servos
## Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
| ---------------------------------------------------------------------- | ------------- | ---------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <a id="fld_timestamp"></a>timestamp | `uint64` | us | | Time since system start |
| <a id="fld_timestamp_sample"></a>timestamp_sample | `uint64` | us | | Sampling timestamp of the data this control response is based on |
| <a id="fld_control"></a>control | `float32[15]` | | [-1 : 1] | Normalized output. 1 means maximum positive position. -1 maximum negative position (if not supported by the output, <0 maps to NaN). NaN maps to disarmed. |
## Constants
| 명칭 | 형식 | Value | 설명 |
| ------------------------------------------------------------------ | -------- | ----- | -- |
| <a id="#MESSAGE_VERSION"></a> MESSAGE_VERSION | `uint32` | 1 | |
| <a id="#NUM_CONTROLS"></a> NUM_CONTROLS | `uint8` | 15 | |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/versioned/ActuatorServos.msg)
:::details
Click here to see original file
```c
# Servo control message
#
# Normalised output setpoint for up to 15 servos.
# Published by the vehicle's allocation and consumed by the actuator output drivers.
uint32 MESSAGE_VERSION = 1
uint64 timestamp # [us] Time since system start
uint64 timestamp_sample # [us] Sampling timestamp of the data this control response is based on
uint8 NUM_CONTROLS = 15
float32[15] control # [-] [@range -1, 1] Normalized output. 1 means maximum positive position. -1 maximum negative position (if not supported by the output, <0 maps to NaN). NaN maps to disarmed.
```
:::