UNPKG

node-switchbot

Version:

The node-switchbot is a Node.js module which allows you to control your Switchbot Devices through Bluetooth (BLE) with automatic OpenAPI fallback.

12 lines 355 B
import type { MeterStatus } from '../types/device.js'; import { SwitchBotDevice } from './base.js'; /** * Meter (Temperature/Humidity Sensor) */ export declare class WoSensorTH extends SwitchBotDevice { /** * Get device status (BLE-first, API-fallback) */ getStatus(): Promise<MeterStatus>; } //# sourceMappingURL=wo-sensor-th.d.ts.map