UNPKG

knxultimate

Version:

KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.

20 lines (19 loc) 419 B
export default class KNXDataBuffer { private _data; private _info; constructor(_data: Buffer, _info?: IDataPoint); get length(): number; get value(): any; get info(): any; sixBits(): boolean; } export interface IDataPoint { id: string; value: any; type: { type: boolean; }; bind: any | null; read: () => any | null; write: ((data: any) => void) | null; }