/// <summary>
 ///     Change the baud rate of the display using the command interface.
 /// </summary>
 public void SetBaudRate(LCDBaudRate baudRate)
 {
     Send(new[] { ConfigurationCommandCharacter, (byte)baudRate });
 }
Example #2
0
 /// <summary>
 /// Change the baud rate of the display using the command interface.
 /// </summary>
 public void SetBaudRate(LCDBaudRate baudRate)
 {
     Write(new byte[] { CONFIGURATION_COMMAND_CHARACTER, (byte)baudRate });
 }