Hello,
I’m trying to control AnafiAI’s gimbal using Olympe. I have successfully controlled the Roll and Pitch directions on the actual device, but I’m unable to control the Yaw direction. Please let me know if this is a specification limitation or if there is an issue in the code.
skyctrl(set_target(
gimbal_id=0,
control_mode="position",
yaw_frame_of_reference="relative",
yaw=_yaw, #set float value, failed.
pitch_frame_of_reference="relative",
pitch=_pitch, #set float value, success.
roll_frame_of_reference="relative",
roll=_roll #set float value, success.
)).wait()