UNPKG

@aircast-4g/mavlink

Version:

TypeScript type generator for MAVLink dialects

19 lines (16 loc) 532 B
import { MessageDefinition } from '../../../core/types.js'; declare const FUEL_STATUS_ID = 371; declare const FUEL_STATUS_CRC_EXTRA = 0; declare const FuelStatusDefinition: MessageDefinition; interface MessageFuelStatus { maximum_fuel: number; consumed_fuel: number; remaining_fuel: number; flow_rate: number; temperature: number; fuel_type: number; id: number; percent_remaining: number; } export { FUEL_STATUS_CRC_EXTRA, FUEL_STATUS_ID, FuelStatusDefinition }; export type { MessageFuelStatus };