@hangtime/grip-connect-capacitor
Version:
Capacitor plugin for Grip Connect devices
15 lines • 729 B
TypeScript
import { type BleDevice } from "@capacitor-community/bluetooth-le";
import { WHC06 as WHC06Base } from "@hangtime/grip-connect";
/**
* Represents a Weiheng - WH-C06 (or MAT Muscle Meter) device.
* To use this device enable: `chrome://flags/#enable-experimental-web-platform-features`.
* {@link https://googlechrome.github.io/samples/web-bluetooth/scan.html| Web Bluetooth}
* {@link https://weihengmanufacturer.com}
*/
export declare class WHC06 extends WHC06Base {
device?: BleDevice;
private readonly weightOffset;
connect: (onSuccess?: () => void, onError?: (error: Error) => void) => Promise<void>;
download: (format?: "csv" | "json" | "xml") => Promise<void>;
}
//# sourceMappingURL=wh-c06.model.d.ts.map