Go-To in Local Frame
Set up mode
auterion::Mode my_mode(sdk, "My Mode", {
auterion::multicopter::LocalFrameGotoSetpoint::Config{}
});Create setpoints
auto setpoint = auterion::multicopter::LocalFrameGotoSetpoint{}
.withPosition({x, y}) // possible overload: withPosition({x, y, z})
.withAltitude(z)
.withHeading(h)
.withMaxHorizontalSpeed(max_xy)
.withMaxVerticalSpeed(max_z)
.withMaxHeadingRate(max_h);Setting default speed limits
Last updated