UNPKG

@fabianvolkers/n8n-nodes-modbus-trigger

Version:

n8n node to trigger Modbus Address on change

10 lines (9 loc) 297 B
import modbus from 'modbus-stream'; interface BaseModbusCredential { host: string; port: number; timeout: number; } export declare type ModbusCredential = BaseModbusCredential; export declare const createClient: (credentials: ModbusCredential) => Promise<modbus.TCPStream>; export {};