@hangtime/grip-connect
Version:
Griptonite Motherboard, Tindeq Progressor, PitchSix Force Board, WHC-06, Entralpi, Climbro, mySmartBoard: Bluetooth API Force-Sensing strength analysis for climbers
13 lines (11 loc) • 383 B
text/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>
}