knxultimate
Version:
KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.
21 lines (20 loc) • 450 B
TypeScript
/// <reference types="node" />
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;
}