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.
15 lines • 391 B
JavaScript
import { WoKeypad } from './wo-keypad.js';
/**
* SwitchBot Keypad Vision Pro device
* @extends WoKeypad
*/
export class WoKeypadVisionPro extends WoKeypad {
/**
* Get keypad status (inherited from WoKeypad)
* @returns Promise resolving to KeypadStatus
*/
async getStatus() {
return super.getStatus();
}
}
//# sourceMappingURL=wo-keypad-vision-pro.js.map