コード例 #1
0
ファイル: MainViewModel.cs プロジェクト: Thunkar/ArmDuino
 public MainViewModel()
 {
     Current = this;
     Arm = new Arm();
     COMHandler = new COMHandler(Arm);
     loadCommands();
 }
コード例 #2
0
ファイル: COMHandler.cs プロジェクト: Thunkar/ArmDuino
 public COMHandler(Arm currentArm)
 {
     this.currentArm = currentArm;
 }
コード例 #3
0
ファイル: ArmCommander.cs プロジェクト: Thunkar/ArmDuino
 public ArmCommander(Arm arm)
 {
     this.currentArm = arm;
     CommandTimer.Interval = new TimeSpan(0, 0, 0, 0, 500);
     CommandTimer.Tick += CommandTimer_Tick;
 }
コード例 #4
0
 public ArmCommander(Arm arm)
 {
     this.currentArm       = arm;
     CommandTimer.Interval = new TimeSpan(0, 0, 0, 0, 500);
     CommandTimer.Tick    += CommandTimer_Tick;
 }
コード例 #5
0
 public COMHandler(Arm currentArm)
 {
     this.currentArm = currentArm;
 }