zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
51 lines • 1.32 kB
TypeScript
/// <reference types="node" />
import { ZclFrame } from '../zcl';
declare enum Events {
networkAddress = "networkAddress",
deviceJoined = "deviceJoined",
zclData = "zclData",
rawData = "rawData",
disconnected = "disconnected",
deviceAnnounce = "deviceAnnounce",
deviceLeave = "deviceLeave"
}
type DeviceJoinedPayload = {
networkAddress: number;
ieeeAddr: string;
};
type DeviceAnnouncePayload = {
networkAddress: number;
ieeeAddr: string;
};
type NetworkAddressPayload = {
networkAddress: number;
ieeeAddr: string;
};
type DeviceLeavePayload = {
networkAddress?: number;
ieeeAddr: string;
} | {
networkAddress: number;
ieeeAddr?: string;
};
interface ZclDataPayload {
address: number | string;
frame: ZclFrame;
endpoint: number;
linkquality: number;
groupID: number;
wasBroadcast: boolean;
destinationEndpoint: number;
}
interface RawDataPayload {
clusterID: number;
address: number | string;
data: Buffer;
endpoint: number;
linkquality: number;
groupID: number;
wasBroadcast: boolean;
destinationEndpoint: number;
}
export { Events, DeviceJoinedPayload, ZclDataPayload, DeviceAnnouncePayload, NetworkAddressPayload, DeviceLeavePayload, RawDataPayload, };
//# sourceMappingURL=events.d.ts.map