@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 (15 loc) • 364 B
TypeScript
/**
* 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[];
}