@deltazeroproduction/f1-udp-parser
Version:
The F1 series of games support the outputting of key game data via a UDP data stream. This data can be interpreted by external apps or connected peripherals for a range of different uses, including providing additional telemetry information, customised HU
12 lines (11 loc) • 419 B
TypeScript
/// <reference types="node" />
import { F1Parser } from '../F1Parser';
import { PacketLapPositionsData } from './types';
/**
* Parser for F1 25 Lap Positions packet (1131 bytes)
* Parses the positions of all drivers at the start of each lap.
*/
export declare class PacketLapPositionsDataParser extends F1Parser {
data: PacketLapPositionsData;
constructor(buffer: Buffer, packetFormat: number);
}