Compare commits
No commits in common. "40d8a3652c3b34982985da9ffb00d62d1287ee44" and "4ebf2224c491ac35539f5a7aa3e43f9ab305642b" have entirely different histories.
40d8a3652c
...
4ebf2224c4
|
@ -84,8 +84,7 @@ 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(64, 0, 255);
|
||||
uint16_t myBLUE = display.color565(0, 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,9 +662,7 @@ 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