@fabianvolkers/n8n-nodes-modbus-trigger
Version:
n8n node to trigger Modbus Address on change
38 lines • 1.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModbusApi = void 0;
class ModbusApi {
constructor() {
this.name = 'modbusApi';
this.displayName = 'MODBUS API';
this.documentationUrl = 'https://github.com/lostedz/n8n-nodes-modbus';
this.properties = [
{
displayName: 'Protocol',
name: 'protocol',
type: 'options',
options: [
{
name: 'modbus',
value: 'tcp',
},
],
default: 'modbus',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: 502,
},
];
}
}
exports.ModbusApi = ModbusApi;
//# sourceMappingURL=ModbusApi.credentials.js.map