diff --git a/fhem/contrib/DS_Starter/76_SolarForecast.pm b/fhem/contrib/DS_Starter/76_SolarForecast.pm
index 669dd5058..bb569cde8 100644
--- a/fhem/contrib/DS_Starter/76_SolarForecast.pm
+++ b/fhem/contrib/DS_Starter/76_SolarForecast.pm
@@ -162,7 +162,7 @@ BEGIN {
my %vNotesIntern = (
"1.50.4" => "15.04.2025 Consumer Strokes: fix __dynColor, new key flowGraphicControl->strokeCmrRedColLimit ".
"__getopenMeteoData: fix get calclated call interval, new Setter cycleInterval ".
- "normBeamWidth: decouple content batsocforecast_, energycosts feedincome from the conversion Wh -> kWh ",
+ "normBeamWidth: decouple content batsocforecast_, energycosts, feedincome from the conversion Wh -> kWh ",
"1.50.3" => "12.04.2025 __calcPVestimates: Fix missing limitation for strings if more than one string is assigned to an inverter ".
"code change in _attrInverterStrings, _attrStringPeak, checkPlantConfig: improved string check ",
"1.50.2" => "11.04.2025 take inverter cap into account if no strings key is set, ctrlSpecialReadings: new option tomorrowConsumptionForecast ".
@@ -17414,12 +17414,8 @@ sub normBeamWidth {
my $doconvert = 0;
if ($kw eq 'kWh') {
- if ($beam eq 'diff' || ( $paref->{$beam.'cont'} !~ /batsocforecast_/xs &&
- $paref->{$beam.'cont'} !~ /energycosts/xs &&
- $paref->{$beam.'cont'} !~ /feedincome/xs
- )
- ) {
- $doconvert = 1;
+ if ($beam ne 'diff' && $paref->{$beam.'cont'} !~ /batsocforecast_|energycosts|feedincome/xs) {
+ $doconvert = 1;
}
}
@@ -25083,17 +25079,17 @@ to ensure that the system configuration is correct.
graphicLayoutType <single | double | diff>
- Layout of the bar graph.
- The content of the bars to be displayed is determined by the graphicBeamXContent attributes.
+ Layout of the bar graph. The content of the bars to be displayed is determined by the graphicBeamXContent attributes.
- | double | displays the primary bar and the secondary bar (default) |
- | single | displays only the primary bar |
- | diff | difference display. It is valid: <Difference> = <Value primary bar> - <Value secondary bar> |
-
+ | double | displays the primary bar and the secondary bar (default) |
+ | single | displays only the primary bar |
+ | diff | difference display. It is valid: <Difference> = <Value primary bar> - <Value secondary bar> |
+ | | The current setting of graphicEnergyUnit is not taken into account. |
+
@@ -27584,16 +27580,16 @@ die ordnungsgemäße Anlagenkonfiguration geprüft werden.
graphicLayoutType <single | double | diff>
- Layout der Balkengrafik.
- Der darzustellende Inhalt der Balken wird durch die Attribute graphicBeamXContent bestimmt.
+ Layout der Balkengrafik. Der darzustellende Inhalt der Balken wird durch die Attribute graphicBeamXContent bestimmt.
- | double | zeigt den primären Balken und den sekundären Balken an (default) |
- | single | zeigt nur den primären Balken an |
- | diff | Differenzanzeige. Es gilt: <Differenz> = <Wert primärer Balken> - <Wert sekundärer Balken> |
+ | double | zeigt den primären Balken und den sekundären Balken an (default) |
+ | single | zeigt nur den primären Balken an |
+ | diff | Differenzanzeige. Es gilt: <Differenz> = <Wert primärer Balken> - <Wert sekundärer Balken> |
+ | | Die aktuelle Einstellung von graphicEnergyUnit wird nicht berücksichtigt. |