ArduinoTest.Components.ArduinoConnection.Write C# (CSharp) Method

Write() public method

public Write ( byte buffer ) : void
buffer byte
return void
        public void Write(byte[] buffer)
        {
            VerifySerialPort(_serialPort);
            _serialPort.Write(buffer, 0, buffer.Length);
        }

Same methods

ArduinoConnection::Write ( string text ) : void