From 1f66134dbd3ebd28f238ac815706aa221077a855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Farkas=20Szil=C3=A1rd?= Date: Mon, 27 Apr 2020 12:55:28 +0200 Subject: [PATCH] Show the MS56xx on Logo screen --- main/disp_oled.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main/disp_oled.cpp b/main/disp_oled.cpp index e3d498c..a0ec3c6 100644 --- a/main/disp_oled.cpp +++ b/main/disp_oled.cpp @@ -130,6 +130,12 @@ void OLED_DrawLogo(u8g2_t *OLED) // draw logo and hardware options in software #ifdef WITH_BME280 u8g2_DrawStr(OLED, 0, 52 ,"BME280"); #endif +#ifdef WITH_MS5607 + u8g2_DrawStr(OLED, 0, 52 ,"MS5607"); +#endif +#ifdef WITH_MS5611 + u8g2_DrawStr(OLED, 0, 52 ,"MS5611"); +#endif #ifdef WITH_BT_SPP u8g2_DrawStr(OLED, 0, 64 ,"BT SPP");