UNPKG

astra-protocol-x-parser

Version:

A lightweight NodeJS package for parsing data from Astra Telematics IoT devices

17 lines (16 loc) 359 B
export declare enum ProtocolXBeaconType { NONE = 0, HEIGHT = 1 } export declare class ProtocolXBeacon { macAddress: string; rssi: number; isCompanion: boolean; lastSeenS: number; type: ProtocolXBeaconType; heightCm?: number; } export declare class ProtocolXBeacons { static mask: bigint; beacons?: ProtocolXBeacon[]; }