The URCap runs on port: 40408 on a daemon. Following script can be called when the URCap is installed.
- init_tool_modbus(address) where address is an int.
- tool_modbus_write(address, data) where both address (register address) and data parameter is an int.
- tool_modbus_read(address) where address (register address) parameter is an int.
The RS485 settings is controlled with the built in function
set_tool_communication(enabled,baud_rate,parity,stop_bits,rx_idle_chars,tx_idle_chars)
And tool supply voltage is controlled with
set_tool_voltage(voltage)
set_tool_voltage(24)
set_tool_communication(True, 1000000, 2, 1, 1.5, 3.5)
init_tool_modbus(65)
while True:
tool_modbus_write(0,60)
sleep(1)
tool_modbus_write(0,0)
sleep(1)
end