@hangtime/grip-connect
Version:
Griptonite Motherboard, Tindeq Progressor, PitchSix Force Board, WHC-06, Entralpi, Climbro, mySmartBoard: Bluetooth API Force-Sensing strength analysis for climbers
12 lines • 441 B
TypeScript
import type { IDevice } from "../device.interface.js";
/**
* Interface representing the Climbro device, extending the base Device interface.
*/
export interface IClimbro extends IDevice {
/**
* Retrieves battery level from the device.
* @returns {Promise<string | undefined>} A Promise that resolves with the battery level.
*/
battery(): Promise<string | undefined>;
}
//# sourceMappingURL=climbro.interface.d.ts.map