Raspberry.IO.Components.Displays.Hd44780.Hd44780LcdConnection.WriteCommand C# (CSharp) Method

WriteCommand() private method

private WriteCommand ( Command command, int parameter ) : void
command Command
parameter int
return void
        private void WriteCommand(Command command, int parameter = 0)
        {
            var bits = (int) command | parameter;
            WriteByte(bits, false);
        }