Ejemplo n.º 1
0
 public void RelativeMove(RobotJoints robotJoints)
 {
     //driveDist  - Achsweise händisch verfahren um z.b. +10
     topics["DriveDist"].Publish(new std_msgs.String(robotJoints.ToString()));
 }
Ejemplo n.º 2
0
 public void AbsoluteMove(RobotJoints robotJoints)
 {
     //driveTo - einen Punkt anfahren
     topics["DriveTo"].Publish(new std_msgs.String(robotJoints.ToString()));
 }
Ejemplo n.º 3
0
 public void AbsoluteMove(RobotJoints robotJoints)
 {
     Console.Write("-> Test - ", System.Reflection.MethodBase.GetCurrentMethod().Name + " ->");
     Console.WriteLine(robotJoints.ToString() + " <-");
 }