From 6e591bd7d377ac31fadc50d3d90af85374fd0fd1 Mon Sep 17 00:00:00 2001 From: Robin Dietzel Date: Fri, 9 Dec 2022 15:54:45 +0100 Subject: [PATCH] FIX: fixed default constructor --- Middlewares/floatpump/Inc/LCD_I2C_Driver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Middlewares/floatpump/Inc/LCD_I2C_Driver.h b/Middlewares/floatpump/Inc/LCD_I2C_Driver.h index f11cae7..7915f93 100644 --- a/Middlewares/floatpump/Inc/LCD_I2C_Driver.h +++ b/Middlewares/floatpump/Inc/LCD_I2C_Driver.h @@ -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);