Пример #1
0
 public MainViewModel()
 {
     Current = this;
     Arm = new Arm();
     COMHandler = new COMHandler(Arm);
     loadCommands();
 }
Пример #2
0
 public COMHandler(Arm currentArm)
 {
     this.currentArm = currentArm;
 }
Пример #3
0
 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;
 }