UNPKG

zigbee-herdsman-zigate

Version:

An open source ZigBee gateway solution with node.js.

23 lines 714 B
/// <reference types="node" /> import { IZGMessage, ZGMessageCode } from '../message'; import BufferReader from '../buffer-reader'; export interface LevelUpdatePayload { sequence: number; endpoint: number; cluster: number; addressMode: string; address: string; status: number; } export declare class ZGLevelUpdateMessage implements IZGMessage { code: ZGMessageCode.LevelUpdate; label: string; payload: LevelUpdatePayload; protected reader: BufferReader; constructor(payload: Buffer); getCode(): ZGMessageCode; getLabel(): string; getPayload(): LevelUpdatePayload; protected parsePayload(): LevelUpdatePayload; } //# sourceMappingURL=level-update.d.ts.map