FIX: fixed default constructor
This commit is contained in:
parent
0c0f7a5be0
commit
6e591bd7d3
@ -13,7 +13,7 @@ namespace floatpump{
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
LCD_I2C_Driver(I2C_HandleTypeDef &handle, uint16_t displayAddr, uint8_t rows = 4, uint8_t cols = 20)
|
LCD_I2C_Driver(I2C_HandleTypeDef &handle, uint16_t displayAddr, uint8_t rows = 4, uint8_t cols = 20)
|
||||||
: m_handle(handle), m_displayAddr(displayAddr), m_rows(rows), m_cols(cols) {};
|
: m_handle(handle), m_displayAddr(displayAddr) {};
|
||||||
|
|
||||||
// Functions sending text
|
// Functions sending text
|
||||||
void LCDSendCString(char *str);
|
void LCDSendCString(char *str);
|
||||||
|
Loading…
Reference in New Issue
Block a user