Hi,
It's not clear if you want to send the Switch's value (boolean state) to the remote flow units or a particular numeric value when the Switch is depressed.
For the first case, you could specify the same Switch in each connection like this, for instance:
Modbus1.1 = Switch1
Modbus2.1 = Switch1
Modbus3.1 = Switch1
In the second case, you can have something like this:
Modbus1.40001 = IF(Switch1, Pot1, Modbus1.40001)
Modbus1.40001 = IF(Switch1, Pot1, Modbus2.40001)Modbus1.40001 = IF(Switch1, Pot1, Modbus3.40001)
It essentially means, IF the Switch1 is pushed, write out the value from Pot1 to the different units, if not, then let their values be as they were.
Hope this is what you were looking for. If I misunderstood your question, p
lease write back.
Regards,
Khalid