コード例 #1
0
ファイル: MainForm.cs プロジェクト: jsmnlcbls/Wifi-Bot
 public ControllerForm()
 {
     InitializeComponent();
     this.robotController = new Controller();
     carCommandRepeater = new Timer();
     carCommandRepeater.Enabled = false;
     carCommandRepeater.Interval = 250;
     carCommandRepeater.Tick +=new EventHandler(carCommandRepeater_Tick);
     isConnected = false;
     initializeControlPanel();
     animateConnectionOnce = false;
     isRecording = false;
     initializeAnimationTimers();
 }
コード例 #2
0
ファイル: FormMain.cs プロジェクト: James3432/project-main
 //---------------------
 // Robot connect
 //---------------------
 private void btn_connect_Click(object sender, EventArgs e)
 {
     try
     {
         c = new Controller(this);
         Log("Controller connected");
         btn_stop.Enabled = true;
         robot_connected = true;
     }
     catch (System.IO.IOException)
     {
         Log("Error connecting to controller");
     }
 }