UNPKG

zigbee-herdsman-zigate

Version:

An open source ZigBee gateway solution with node.js.

21 lines 679 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ZGGetDevicesListCommand = void 0; const command_1 = require("../command"); const debug_1 = require("../../debug"); const debug = debug_1.Debug('driver:commands'); class ZGGetDevicesListCommand { constructor() { this.label = 'get-devices-list'; this.code = command_1.ZGCommandCode.GetDeviceList; debug.log.extend(`command:${this.getLabel()}`)(`no payload`); } getCode() { return this.code; } getLabel() { return this.label; } } exports.ZGGetDevicesListCommand = ZGGetDevicesListCommand; //# sourceMappingURL=get-devices-list.js.map