We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 265ac7b commit 8c6bcf0Copy full SHA for 8c6bcf0
libraries/LiquidCrystal/src/LiquidCrystal.cpp
@@ -92,7 +92,7 @@ void LiquidCrystal::begin(uint8_t cols, uint8_t lines, uint8_t dotsize) {
92
setRowOffsets(0x00, 0x40, 0x00 + cols, 0x40 + cols);
93
94
// for some 1 line displays you can select a 10 pixel high font
95
- if ((dotsize != 0) && (lines == 1)) {
+ if ((dotsize != LCD_5x8DOTS) && (lines == 1)) {
96
_displayfunction |= LCD_5x10DOTS;
97
}
98
0 commit comments