UNPKG

zigbee-herdsman-zigate

Version:

An open source ZigBee gateway solution with node.js.

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