@aircast-4g/mavlink
Version:
TypeScript type generator for MAVLink dialects
14 lines (11 loc) • 344 B
TypeScript
import { MessageDefinition } from '../../../core/types.js';
declare const WIND_ID = 168;
declare const WIND_CRC_EXTRA = 0;
declare const WindDefinition: MessageDefinition;
interface MessageWind {
direction: number;
speed: number;
speed_z: number;
}
export { WIND_CRC_EXTRA, WIND_ID, WindDefinition };
export type { MessageWind };