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);