From 5e7877b5d82c473b056e2d5e3584f44da212fe85 Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Tue, 31 May 2022 15:31:18 +0200 Subject: [PATCH] typo --- src/lcd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lcd.cpp b/src/lcd.cpp index dbb1449..6eed5ed 100644 --- a/src/lcd.cpp +++ b/src/lcd.cpp @@ -47,7 +47,7 @@ LCD::LCD(i2c_inst_t *i2c, const uint gpio_sda, const uint gpio_scl, clear(); } -// go to location on LCD +// Go to location on LCD void LCD::setCursor(int line, int position) { int val = (line == 0) ? 0x80 + position : 0xC0 + position; sendByte(val, Mode::COMMAND);