Exemplo n.º 1
0
 public Action <double> SetSpeed(string axis)
 {
     return(act((double speed) =>
     {
         Ch.SetVelocity(Axis[axis], speed, Ch.ACSC_ASYNCHRONOUS, ref pWait);
         System.Threading.Thread.Sleep(80);
     }));
 }