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

231 lines 9.35 kB
import { Device } from "../device.model.js"; /** * Represents a Entralpi device. * {@link https://entralpi.com} */ export class Entralpi extends Device { constructor() { super({ filters: [ { name: "ENTRALPI", }, ], services: [ { name: "Device Information", id: "device", uuid: "0000180a-0000-1000-8000-00805f9b34fb", characteristics: [ { name: "System ID", id: "system", uuid: "00002a23-0000-1000-8000-00805f9b34fb", }, { name: "Model Number String", id: "model", uuid: "00002a24-0000-1000-8000-00805f9b34fb", }, // { // name: "Serial Number String (Blocked)", // id: "serial", // uuid: "00002a25-0000-1000-8000-00805f9b34fb", // }, { name: "Firmware Revision String", id: "firmware", uuid: "00002a26-0000-1000-8000-00805f9b34fb", }, { name: "Hardware Revision String", id: "hardware", uuid: "00002a27-0000-1000-8000-00805f9b34fb", }, { name: "Software Revision String", id: "software", uuid: "00002a28-0000-1000-8000-00805f9b34fb", }, { name: "Manufacturer Name String", id: "manufacturer", uuid: "00002a29-0000-1000-8000-00805f9b34fb", }, { name: "IEEE 11073-20601 Regulatory Certification Data List", id: "certification", uuid: "00002a2a-0000-1000-8000-00805f9b34fb", }, { name: "PnP ID", id: "pnp", uuid: "00002a50-0000-1000-8000-00805f9b34fb", }, ], }, { name: "Battery Service", id: "battery", uuid: "0000180f-0000-1000-8000-00805f9b34fb", characteristics: [ { name: "Battery Level", id: "level", uuid: "00002a19-0000-1000-8000-00805f9b34fb", }, ], }, { name: "Generic Attribute", id: "attribute", uuid: "f000ffc0-0451-4000-b000-000000000000", characteristics: [ { name: "", id: "", uuid: "f000ffc1-0451-4000-b000-000000000000", }, { name: "", id: "", uuid: "f000ffc2-0451-4000-b000-000000000000", }, ], }, { name: "UART ISSC Transparent Service", id: "uart", uuid: "0000fff0-0000-1000-8000-00805f9b34fb", characteristics: [ { name: "TX", id: "tx", uuid: "0000fff1-0000-1000-8000-00805f9b34fb", }, { name: "RX", id: "rx", uuid: "0000fff4-0000-1000-8000-00805f9b34fb", }, ], }, { name: "Weight Scale", id: "weight", uuid: "0000181d-0000-1000-8000-00805f9b34fb", characteristics: [ { name: "notify", id: "rx", uuid: "0000fff1-0000-1000-8000-00805f9b34fb", }, ], }, ], }); } /** * Retrieves battery or voltage information from the device. * @returns {Promise<string | undefined>} A Promise that resolves with the battery or voltage information. */ battery = async () => { return await this.read("battery", "level", 250); }; /** * Retrieves IEEE 11073-20601 Regulatory Certification from the device. * @returns {Promise<string>} A Promise that resolves with the certification. */ certification = async () => { return await this.read("device", "certification", 250); }; /** * Retrieves firmware version from the device. * @returns {Promise<string>} A Promise that resolves with the firmware version. */ firmware = async () => { return await this.read("device", "firmware", 250); }; /** * Handles data received from the device, processes weight measurements, * and updates mass data including maximum and average values. * It also handles command responses for retrieving device information. * * @param {DataView} value - The notification event. */ handleNotifications = (value) => { if (value) { this.updateTimestamp(); if (value.buffer) { this.currentSamplesPerPacket = 1; this.recordPacketReceived(); const receivedTime = Date.now(); const receivedData = (value.getUint16(0) / 100).toFixed(1); const convertedData = Number(receivedData); // Adjust weight by using the tare value. // Keep stream output consistent with other devices: positive load after tare. const numericData = convertedData - this.applyTare(convertedData); const currentMassTotal = Math.max(-1000, numericData); // Update session stats before building packet this.peak = Math.max(this.peak, numericData); this.min = Math.min(this.min, Math.max(-1000, numericData)); this.sum += currentMassTotal; this.dataPointCount++; this.mean = this.sum / this.dataPointCount; // Add data to downloadable Array this.downloadPackets.push(this.buildDownloadPacket(currentMassTotal, [convertedData], { timestamp: receivedTime, sampleIndex: this.dataPointCount, })); // Check if device is being used this.activityCheck(numericData); // Notify with weight data this.notifyCallback(this.buildForceMeasurement(currentMassTotal)); } } }; /** * Retrieves hardware version from the device. * @returns {Promise<string>} A Promise that resolves with the hardware version. */ hardware = async () => { return await this.read("device", "hardware", 250); }; /** * Retrieves manufacturer information from the device. * @returns {Promise<string>} A Promise that resolves with the manufacturer information. */ manufacturer = async () => { return await this.read("device", "manufacturer", 250); }; /** * Retrieves model number from the device. * @returns {Promise<string>} A Promise that resolves with the model number. */ model = async () => { return await this.read("device", "model", 250); }; /** * Retrieves PnP ID from the device, a set of values that used to create a device ID value that is unique for this device. * Included in the characteristic is a Vendor ID Source field, a Vendor ID field, a Product ID field and a Product Version field * @returns {Promise<string>} A Promise that resolves with the PnP ID. */ pnp = async () => { return await this.read("device", "pnp", 250); }; /** * Retrieves software version from the device. * @returns {Promise<string>} A Promise that resolves with the software version. */ software = async () => { return await this.read("device", "software", 250); }; /** * Retrieves system id from the device. * @returns {Promise<string>} A Promise that resolves with the system id. */ system = async () => { return await this.read("device", "system", 250); }; } //# sourceMappingURL=entralpi.model.js.map