UNPKG

@hangtime/grip-connect

Version:

Griptonite Motherboard, Tindeq Progressor, PitchSix Force Board, WHC-06, Entralpi, Climbro, mySmartBoard: Bluetooth API Force-Sensing strength analysis for climbers

16 lines 412 B
/** * Represents a single data packet. */ export interface DownloadPacket { /** Timestamp of when the packet was received */ received: number; /** Sample number */ sampleNum: number; /** Battery raw value */ battRaw: number; /** Array of sample values */ samples: number[]; /** Array of mass values */ masses: number[]; } //# sourceMappingURL=download.interface.d.ts.map