FIX: fixed default constructor

This commit is contained in:
Robin Dietzel 2022-12-09 15:54:45 +01:00
parent 0c0f7a5be0
commit 6e591bd7d3

View File

@ -13,7 +13,7 @@ namespace floatpump{
public:
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
void LCDSendCString(char *str);