コード例 #1
0
ファイル: Robot.cs プロジェクト: ForGitHub00/Voronezh_v1
 public Robot(int port)
 {
     _port      = port;
     Correction = _defaultDelegate;
     speed      = 12;
     _oneCor    = speed * 0.012;
 }
コード例 #2
0
ファイル: Robot.cs プロジェクト: ForGitHub00/Voronezh_v1
 public Robot(int port, CorrectionDelegate dlgt)
 {
     _port      = port;
     Correction = dlgt;
 }