コード例 #1
0
ファイル: Form1.cs プロジェクト: Amannor/navy_hack_locator
        //Attempt start
        private void start()
        {
            //Pass through com port
            handleSerial.comPort = cboxSerialPort.Text;

            //Pass through server URL
            handleSerial.serverURL = txtServerURL.Text;

            //Attempt to connect via serial
            handleSerial.start();
        }
コード例 #2
0
        //Attempt start
        private void start()
        {
            //Pass through com port
            handleSerial.comPort = cboxSerialPort.Text;

            //Pass through server URL
            handleSerial.serverURL = txtServerURL.Text;

            //Pass through apikey
            handleSerial.apiKey = txtApiKey.Text;

            handleSerial.bdRate = cboxBdRate.Text;

            //Attempt to connect via serial
            handleSerial.start();
        }