Compare commits
2 Commits
4ebf2224c4
...
40d8a3652c
Author | SHA1 | Date | |
---|---|---|---|
|
40d8a3652c | ||
|
aeb829ee5b |
|
@ -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);
|
||||
|
@ -662,7 +663,9 @@ void BlinkSec(bool blink){
|
|||
void readHtu(){
|
||||
if (!NOHTU){
|
||||
FeuchteInnen = htu.readHumidity();
|
||||
FeuchteInnen = (FeuchteInnen /100) * 120;
|
||||
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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user