Hi,
I am trying to make the VB.Net send the value to PLC (Panasonic FP0R)
If i am using Basic Button or Basic Label, it works.
But if i am using below code, ModbusRTUCom is not declared error came out on Visual Studio 2019
ModbusRTUCom.Write(400003, txtFinalOutput.Text)
I trying to declare as below just for testing, but no data register changes on the PLC.
Dim driver As New AdvancedHMIDrivers.ModbusRTUCom
driver.Write("400003", "1")
Any idea ?