2026-08-0200
This commit is contained in:
+30
-6
@@ -9,17 +9,17 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[platformio]
|
[platformio]
|
||||||
extra_configs = ../../../../media/hans-jurgen/Transport/secrets.ini
|
extra_configs = ../secrets.ini
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
board = nodemcu-32s
|
board = nodemcu-32s
|
||||||
framework = arduino
|
framework = arduino
|
||||||
;
|
;
|
||||||
monitor_port = /dev/ttyUSB0
|
monitor_port = /dev/ttyACM0
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
monitor_filters = time
|
monitor_filters = time
|
||||||
upload_port = /dev/ttyUSB0
|
upload_port = /dev/ttyACM0
|
||||||
|
|
||||||
build_flags =
|
build_flags =
|
||||||
-DDEBUG=1
|
-DDEBUG=1
|
||||||
@@ -45,10 +45,10 @@ build_flags = ${env.build_flags}
|
|||||||
-DHW5=1 ;Neue Hardware 5.03 2025-04
|
-DHW5=1 ;Neue Hardware 5.03 2025-04
|
||||||
;-DDisplayTest=1
|
;-DDisplayTest=1
|
||||||
-DDISPLAY64_64=1
|
-DDISPLAY64_64=1
|
||||||
-DHOSTNAME=\"SCHLAFZIMMER-DISPLAY\"
|
-DHOSTNAME=\"BORIS-DISPLAY\"
|
||||||
-DNAME=\"DISPLAY3\"
|
-DNAME=\"DISPLAY4\"
|
||||||
-DGRENZWERT=3.70
|
-DGRENZWERT=3.70
|
||||||
-DMYIP=\"192.168.127.109\"
|
-DMYIP=\"192.168.127.41\"
|
||||||
-DInnenTemp=\"hjk/WOHNZIMMER/env\"
|
-DInnenTemp=\"hjk/WOHNZIMMER/env\"
|
||||||
-DStation=\"hjk/WETTERSTATION-SULZFELD/env\"
|
-DStation=\"hjk/WETTERSTATION-SULZFELD/env\"
|
||||||
-DCO2Wert=\"hjk/devices/257923/telemetry/co2\"
|
-DCO2Wert=\"hjk/devices/257923/telemetry/co2\"
|
||||||
@@ -92,5 +92,29 @@ build_flags = ${env.build_flags}
|
|||||||
-DBME_KorrekturFeuchte=0.00
|
-DBME_KorrekturFeuchte=0.00
|
||||||
-DAKKU_GREZWERT=2.950
|
-DAKKU_GREZWERT=2.950
|
||||||
|
|
||||||
|
[env:boris] ; Entwicklungssystem
|
||||||
|
build_flags = ${env.build_flags}
|
||||||
|
${secrets_hjk.build_flags}
|
||||||
|
${secrets_mqtt.build_flags}
|
||||||
|
-DHW5=1 ;Neue Hardware 5.03 2025-04
|
||||||
|
;-DDisplayTest=1
|
||||||
|
-DDISPLAY64_64=1
|
||||||
|
-DWEISS=1
|
||||||
|
-DHOSTNAME=\"BORIS-DISPLAY\"
|
||||||
|
-DNAME=\"DISPLAY4\"
|
||||||
|
-DGRENZWERT=3.70
|
||||||
|
-DMYIP=\"192.168.127.41\"
|
||||||
|
-DInnenTemp=\"hjk/WOHNZIMMER/env\"
|
||||||
|
-DStation=\"hjk/WETTERSTATION-SULZFELD/env\"
|
||||||
|
-DCO2Wert=\"hjk/devices/257923/telemetry/co2\"
|
||||||
|
-DHELL=\"hjk/devices/DisplaySulzfeld/telemetry/Lux\"
|
||||||
|
-DHTU_Korrectur=0.00
|
||||||
|
-DBME_Korrectur=-2.15
|
||||||
|
-DKorrekturLuftdruck=0.00
|
||||||
|
-DHTUKorrekturFeuchte=0.00
|
||||||
|
-DBME_KorrekturFeuchte=0.00
|
||||||
|
-DAKKU_GREZWERT=2.95
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -445,7 +445,7 @@ void ZeigeZeit(tm localTime, int xPos = 2, int yPos = 8)
|
|||||||
sprintf(szTime, "%02d", localTime.tm_hour);
|
sprintf(szTime, "%02d", localTime.tm_hour);
|
||||||
display.setCursor(xPos-1, yPos);
|
display.setCursor(xPos-1, yPos);
|
||||||
display.setFont(&FreeMonoBold12pt7b);
|
display.setFont(&FreeMonoBold12pt7b);
|
||||||
#ifndef marcel
|
#ifndef WEISS
|
||||||
display.setTextColor(myMAGENTA);
|
display.setTextColor(myMAGENTA);
|
||||||
#else
|
#else
|
||||||
display.setTextColor(myWHITE);
|
display.setTextColor(myWHITE);
|
||||||
@@ -456,7 +456,7 @@ void ZeigeZeit(tm localTime, int xPos = 2, int yPos = 8)
|
|||||||
// Doppelpunkt zeichnen
|
// Doppelpunkt zeichnen
|
||||||
display.fillRect(xPos + 27, yPos -8, 2, 15, myBLACK);
|
display.fillRect(xPos + 27, yPos -8, 2, 15, myBLACK);
|
||||||
if (blinkSek == true) {
|
if (blinkSek == true) {
|
||||||
#ifndef marcel
|
#ifndef WEISS
|
||||||
display.fillRect(xPos + 27, yPos - 3, 2, 2, myMAGENTA);
|
display.fillRect(xPos + 27, yPos - 3, 2, 2, myMAGENTA);
|
||||||
display.fillRect(xPos + 27, yPos + 1, 2, 2, myMAGENTA);
|
display.fillRect(xPos + 27, yPos + 1, 2, 2, myMAGENTA);
|
||||||
#else
|
#else
|
||||||
@@ -468,7 +468,7 @@ void ZeigeZeit(tm localTime, int xPos = 2, int yPos = 8)
|
|||||||
sprintf(szTime, "%02d", localTime.tm_min);
|
sprintf(szTime, "%02d", localTime.tm_min);
|
||||||
display.setCursor(xPos + 29, yPos);
|
display.setCursor(xPos + 29, yPos);
|
||||||
display.setFont(&FreeMonoBold12pt7b);
|
display.setFont(&FreeMonoBold12pt7b);
|
||||||
#ifndef marcel
|
#ifndef WEISS
|
||||||
display.setTextColor(myMAGENTA);
|
display.setTextColor(myMAGENTA);
|
||||||
#else
|
#else
|
||||||
display.setTextColor(myWHITE);
|
display.setTextColor(myWHITE);
|
||||||
|
|||||||
Reference in New Issue
Block a user