Browse Source
Merge pull request #774 from dAjaY85/development03
SSD1306 Fehlerkorrektur
pull/776/head
Lukas Pusch
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/plugins/Display/Display.h
|
@ -79,7 +79,7 @@ class Display { |
|
|
totalYieldTotal += iv->getChannelFieldValue(CH0, FLD_YT, rec); |
|
|
totalYieldTotal += iv->getChannelFieldValue(CH0, FLD_YT, rec); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if ((1 < mCfg->type) && (mCfg->type < 10)) { |
|
|
if ((0 < mCfg->type) && (mCfg->type < 10)) { |
|
|
mMono.disp(totalPower, totalYieldDay, totalYieldTotal, isprod); |
|
|
mMono.disp(totalPower, totalYieldDay, totalYieldTotal, isprod); |
|
|
} else if (mCfg->type >= 10) { |
|
|
} else if (mCfg->type >= 10) { |
|
|
#if defined(ESP32) |
|
|
#if defined(ESP32) |
|
|