@hangtime/grip-connect
Version:
Griptonite Motherboard, Tindeq Progressor, PitchSix Force Board, WHC-06, Entralpi, Climbro, mySmartBoard: Bluetooth API Force-Sensing strength analysis for climbers
17 lines (15 loc) • 477 B
text/typescript
import { Device } from "../device.model.js"
import type { ImySmartBoard } from "../../interfaces/device/mysmartboard.interface.js"
/**
* Represents a Smartboard Climbing mySmartBoard device.
* TODO: Add services, do you own a mySmartBoard? Help us!
* {@link https://www.smartboard-climbing.com}
*/
export class mySmartBoard extends Device implements ImySmartBoard {
constructor() {
super({
filters: [{ name: "mySmartBoard" }],
services: [],
})
}
}