@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
19 lines (16 loc) • 672 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const GIMBAL_MANAGER_SET_ATTITUDE_ID = 282;
declare const GIMBAL_MANAGER_SET_ATTITUDE_CRC_EXTRA = 0;
declare const GimbalManagerSetAttitudeDefinition: MessageDefinition;
interface MessageGimbalManagerSetAttitude {
flags: number;
q: number[];
angular_velocity_x: number;
angular_velocity_y: number;
angular_velocity_z: number;
target_system: number;
target_component: number;
gimbal_device_id: number;
}
export { GIMBAL_MANAGER_SET_ATTITUDE_CRC_EXTRA, GIMBAL_MANAGER_SET_ATTITUDE_ID, GimbalManagerSetAttitudeDefinition };
export type { MessageGimbalManagerSetAttitude };