ArduinoTest.Components.ArduinoConnection.Write C# (CSharp) Méthode

Write() public méthode

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

Same methods

ArduinoConnection::Write ( string text ) : void