Hi,
I was able to establish a connection with my robot using VB programming. However, I cannot figure out how to get any register value. Here is my code :
Code
Public objRobot As FRRobot.FRCRobot
Private Sub pcintf(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim reg As Integer
objRobot = New FRRobot.FRCRobot
objRobot.Connect("192.168.1.103")
reg = objRobot.RegNumerics("???")
End Sub
How do you use the function RegNumerics() to get a value located in the numeric register of the robot ? Furthermore, is there any good documentation covering all available functions ?
Thank you
Thank you.