Skip to content

Commit afdd882

Browse files
committed
Fix coding style and synchronize the names of constructor arguments.
1 parent 659d36b commit afdd882

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

LiquidCrystal_I2C.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// can't assume that its in that state when a sketch starts (and the
2323
// LiquidCrystal constructor is called).
2424

25-
LiquidCrystal_I2C::LiquidCrystal_I2C(uint8_t lcd_addr, uint8_t lcd_cols, uint8_t lcd_rows, uint8_t dotsize)
25+
LiquidCrystal_I2C::LiquidCrystal_I2C(uint8_t lcd_addr, uint8_t lcd_cols, uint8_t lcd_rows, uint8_t charsize)
2626
{
2727
_addr = lcd_addr;
2828
_cols = lcd_cols;

LiquidCrystal_I2C.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
class LiquidCrystal_I2C : public Print {
5555
public:
56-
LiquidCrystal_I2C(uint8_t lcd_addr,uint8_t lcd_cols,uint8_t lcd_rows, uint8_t charsize = LCD_5x8DOTS);
56+
LiquidCrystal_I2C(uint8_t lcd_addr, uint8_t lcd_cols, uint8_t lcd_rows, uint8_t charsize = LCD_5x8DOTS);
5757
void begin();
5858
void clear();
5959
void home();

0 commit comments

Comments
 (0)