Ejemplo n.º 1
0
 public Robot(int port)
 {
     _port      = port;
     Correction = _defaultDelegate;
     speed      = 12;
     _oneCor    = speed * 0.012;
 }
Ejemplo n.º 2
0
 public Robot(int port, CorrectionDelegate dlgt)
 {
     _port      = port;
     Correction = dlgt;
 }