2024-10-1600Temperartur Korrektur eingerichtet
This commit is contained in:
parent
18628d6738
commit
1fb4468a48
|
@ -48,7 +48,7 @@ if (Anzahl_Sensoren_BME280 > 0) {
|
||||||
Luftdruck_BME = (Luftdruck_BME/100) + KorrekturLuftdruck;
|
Luftdruck_BME = (Luftdruck_BME/100) + KorrekturLuftdruck;
|
||||||
//Luftdruck_BME = 220;
|
//Luftdruck_BME = 220;
|
||||||
Serial.print("Temperature (BME280):\t\t");
|
Serial.print("Temperature (BME280):\t\t");
|
||||||
Serial.print(Temperatur_BME);
|
Serial.print(Temperatur_BME) + -KorrekturTemperaturBME;
|
||||||
Serial.println(" °C");
|
Serial.println(" °C");
|
||||||
Serial.print("Luftfeuchtigkeit (BME280):\t");
|
Serial.print("Luftfeuchtigkeit (BME280):\t");
|
||||||
Serial.print(Luftfeuchte_BME);
|
Serial.print(Luftfeuchte_BME);
|
||||||
|
|
|
@ -51,7 +51,7 @@ void read_BMP_280() {
|
||||||
|
|
||||||
Serial.print("Temperature (BMP280):\t");
|
Serial.print("Temperature (BMP280):\t");
|
||||||
float t = bmp.readTemperature();
|
float t = bmp.readTemperature();
|
||||||
t = t + KorrekturTemperatur;
|
t = t + KorrekturTemperaturBMP;
|
||||||
dtostrf(t,7,1,BMP280Data.temperature);
|
dtostrf(t,7,1,BMP280Data.temperature);
|
||||||
Serial.print(BMP280Data.temperature);
|
Serial.print(BMP280Data.temperature);
|
||||||
Serial.println(" °C");
|
Serial.println(" °C");
|
||||||
|
|
|
@ -28,7 +28,7 @@ void init_HTU21(){
|
||||||
|
|
||||||
void read_HTU21D() {
|
void read_HTU21D() {
|
||||||
float t = htu.readTemperature();
|
float t = htu.readTemperature();
|
||||||
t = t + KorrekturTemperatur;
|
t = t + KorrekturTemperaturHTU;
|
||||||
dtostrf(t,7,1,htuData.temperature);
|
dtostrf(t,7,1,htuData.temperature);
|
||||||
float h = htu.readHumidity();
|
float h = htu.readHumidity();
|
||||||
dtostrf(h,7,1,htuData.humity);
|
dtostrf(h,7,1,htuData.humity);
|
||||||
|
|
|
@ -54,7 +54,10 @@ build_flags = ${env.build_flags}
|
||||||
-DUBKorectur=0.854417949
|
-DUBKorectur=0.854417949
|
||||||
-DMinimalSpannung=3.00
|
-DMinimalSpannung=3.00
|
||||||
-DKorrekturLuftdruck=23.58
|
-DKorrekturLuftdruck=23.58
|
||||||
-DKorrekturTemperatur=0.0
|
-DKorrekturTemperaturBME=0.1
|
||||||
|
-DKorrekturTemperaturBMP=0.4
|
||||||
|
-DKorrekturTemperaturMCP=0.0
|
||||||
|
-DKorrekturTemperaturHTU=0.1
|
||||||
|
|
||||||
[env:marcel] ; Produktivsystem:
|
[env:marcel] ; Produktivsystem:
|
||||||
build_flags = ${env.build_flags}
|
build_flags = ${env.build_flags}
|
||||||
|
@ -75,7 +78,10 @@ build_flags = ${env.build_flags}
|
||||||
-DUBKorectur=0.854417949
|
-DUBKorectur=0.854417949
|
||||||
-DMinimalSpannung=3.00
|
-DMinimalSpannung=3.00
|
||||||
-DKorrekturLuftdruck=23.58
|
-DKorrekturLuftdruck=23.58
|
||||||
-DKorrekturTemperatur=0.0
|
-DKorrekturTemperaturBME=0.0
|
||||||
|
-DKorrekturTemperaturBMP=0.0
|
||||||
|
-DKorrekturTemperaturMCP=0.0
|
||||||
|
-DKorrekturTemperaturHTU=0.0
|
||||||
|
|
||||||
[env:boris] ; Produktivsystem:
|
[env:boris] ; Produktivsystem:
|
||||||
build_flags = ${env.build_flags}
|
build_flags = ${env.build_flags}
|
||||||
|
@ -96,7 +102,11 @@ build_flags = ${env.build_flags}
|
||||||
-DUBKorectur=0.854417949
|
-DUBKorectur=0.854417949
|
||||||
-DMinimalSpannung=3.00
|
-DMinimalSpannung=3.00
|
||||||
-DKorrekturLuftdruck=23.58
|
-DKorrekturLuftdruck=23.58
|
||||||
-DKorrekturTemperatur=-3,5
|
-DKorrekturTemperaturBME=0.0
|
||||||
|
-DKorrekturTemperaturBMP=0.0
|
||||||
|
-DKorrekturTemperaturMCP=0.0
|
||||||
|
-DKorrekturTemperaturHTU=0.0
|
||||||
|
|
||||||
|
|
||||||
[env:hjk]
|
[env:hjk]
|
||||||
build_flags = ${env.build_flags}
|
build_flags = ${env.build_flags}
|
||||||
|
@ -117,7 +127,12 @@ build_flags = ${env.build_flags}
|
||||||
-DUBKorectur=0.0
|
-DUBKorectur=0.0
|
||||||
-DMinimalSpannung=3.70
|
-DMinimalSpannung=3.70
|
||||||
-DKorrekturLuftdruck=23.58
|
-DKorrekturLuftdruck=23.58
|
||||||
-DKorrekturTemperatur=0.0
|
-DKorrekturTemperaturBME=0.0
|
||||||
|
-DKorrekturTemperaturBMP=0.0
|
||||||
|
-DKorrekturTemperaturMCP=0.0
|
||||||
|
-DKorrekturTemperaturHTU=0.0
|
||||||
|
|
||||||
|
|
||||||
[env:filamentbox]
|
[env:filamentbox]
|
||||||
build_flags = ${env.build_flags}
|
build_flags = ${env.build_flags}
|
||||||
-DDEBUG=0
|
-DDEBUG=0
|
||||||
|
@ -137,4 +152,8 @@ build_flags = ${env.build_flags}
|
||||||
-DUBKorectur=0.0
|
-DUBKorectur=0.0
|
||||||
-DMinimalSpannung=3.70
|
-DMinimalSpannung=3.70
|
||||||
-DKorrekturLuftdruck=23.58
|
-DKorrekturLuftdruck=23.58
|
||||||
-DKorrekturTemperatur=0.0
|
-DKorrekturTemperaturBME=0.0
|
||||||
|
-DKorrekturTemperaturBMP=0.0
|
||||||
|
-DKorrekturTemperaturMCP=0.0
|
||||||
|
-DKorrekturTemperaturHTU=0.0
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user