Example #1
0
        //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();
        }
Example #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();
        }