knxultimate
Version:
KNX IP protocol implementation for Node. This is the ENGINE of Node-Red KNX-Ultimate node.
10 lines (9 loc) • 546 B
TypeScript
import LDataInd from './LDataInd';
import LDataReq from './LDataReq';
import KNXAddress from '../KNXAddress';
import KNXDataBuffer from '../KNXDataBuffer';
export default class CEMIFactory {
static createFromBuffer(type: number, buffer: Buffer, offset: number): any;
static newLDataRequestMessage(requestType: string, srcAddress: KNXAddress, dstAddress: KNXAddress, data: KNXDataBuffer): LDataReq;
static newLDataIndicationMessage(requestType: string, srcAddress: KNXAddress, dstAddress: KNXAddress, data: KNXDataBuffer): LDataInd;
}