private static void UpdateMessage(string message, Lcd display) { display.SetCursorPosition(0, 1); foreach (var c in message) { if (c == ' ') { display.MoveCursor(true); continue; } display.WriteByte((byte)c); } }