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

WriteByte() private method

private WriteByte ( int bits, bool charMode ) : void
bits int
charMode bool
return void
        private void WriteByte(int bits, bool charMode)
        {
            if (pins.Data.Length == 4)
                WriteByte4Pins(bits, charMode);
            else
                throw new NotImplementedException("8 bits mode is currently not implemented");
        }