I have connected the UR10 to our PLC via Ethernet (Allen Bradley). We are able to read all values from the UR10 but are having trouble triggering the output. We are relatively new to cobots and this type of PLC interfacing, any suggestions/direction
would be appreciated!
I helped out some students with a PLC program that was connected to the robot through PROFINET and they were using the following commands on the UR side:
# to send signals to the PLC
add_var = 0
value = 25
write_output_float_register(add_var, value)
# to read signals from the PLC
value_from_plc = read_input_float_register(add_var)