Peripheral Actuator Control API
Related C++ Header in the Auterion SDK:<auterion_sdk/control/common/peripheral_actuator_controls.hpp>
Auterion SDK provides an interface to control independent/generic actuators of the vehicle, that is, actuators which do not control the vehicle's motion or hardware that is not directly integrated with PX4, such as a payload servo. The control interface allows to set the value of up to 6 independent actuators, provided first that the outputs are configured as Actuator Set x.
Set peripheral actuator values
Instantiate an auterion::PeripheralActuatorControls
object by passing your auterion::SDK
instance:
Set your configured actuators to their desired state (in range [-1, 1]
) using the set(...)
method:
Alternatively, set(...)
is overloaded to set the value of a specific actuator:
Last updated