@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
19 lines (16 loc) • 641 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const GIMBAL_MANAGER_SET_PITCHYAW_ID = 287;
declare const GIMBAL_MANAGER_SET_PITCHYAW_CRC_EXTRA = 0;
declare const GimbalManagerSetPitchyawDefinition: MessageDefinition;
interface MessageGimbalManagerSetPitchyaw {
flags: number;
pitch: number;
yaw: number;
pitch_rate: number;
yaw_rate: number;
target_system: number;
target_component: number;
gimbal_device_id: number;
}
export { GIMBAL_MANAGER_SET_PITCHYAW_CRC_EXTRA, GIMBAL_MANAGER_SET_PITCHYAW_ID, GimbalManagerSetPitchyawDefinition };
export type { MessageGimbalManagerSetPitchyaw };