From aeb829ee5bed36f122aa80e60b45e965d5ab0fb5 Mon Sep 17 00:00:00 2001 From: hans-jurgen Date: Sun, 14 May 2023 15:56:23 +0200 Subject: [PATCH] =?UTF-8?q?=C3=84nderung=202023-05-14=20Blue=20angepasst.?= =?UTF-8?q?=20Temperatur=20angepasst.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 5401475..9c42451 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -84,7 +84,8 @@ PxMATRIX display(64,32,P_LAT, P_OE,P_A,P_B,P_C,P_D); // Some standard colors uint16_t myRED = display.color565(255, 0, 0); uint16_t myGREEN = display.color565(0, 255, 0); -uint16_t myBLUE = display.color565(0, 0, 255); +//uint16_t myBLUE = display.color565(0, 0, 255); +uint16_t myBLUE = display.color565(64, 0, 255); uint16_t myWHITE = display.color565(255, 255, 255); uint16_t myYELLOW = display.color565(255, 255, 0); uint16_t myCYAN = display.color565(0, 255, 255); @@ -663,6 +664,7 @@ void readHtu(){ if (!NOHTU){ FeuchteInnen = htu.readHumidity(); TemparaturInnen = htu.readTemperature(); + TemparaturInnen = TemparaturInnen + - 5.4; Serial.printf("\n\nTemperarur Innen %f °C und\nLuftfeuchtigkeit %f %%\n\n", TemparaturInnen, FeuchteInnen ); }else{ FeuchteInnen = 20.00;