diff --git a/fhem/contrib/DS_Starter/76_SolarForecast.pm b/fhem/contrib/DS_Starter/76_SolarForecast.pm
index f18b8e341..b3acab4ff 100644
--- a/fhem/contrib/DS_Starter/76_SolarForecast.pm
+++ b/fhem/contrib/DS_Starter/76_SolarForecast.pm
@@ -136,7 +136,8 @@ BEGIN {
# Versions History intern
my %vNotesIntern = (
- "0.80.2" => "02.06.2023 new ctrlDebug keys epiecesCalc, change selfconsumption with graphic Adjustment, ",
+ "0.80.2" => "02.06.2023 new ctrlDebug keys epiecesCalc, change selfconsumption with graphic Adjustment, moduleDirection ".
+ "accepts azimut values -180 .. 0 .. 180 as well as azimut identifier (S, SE ..) ",
"0.80.1" => "31.05.2023 adapt _calcCAQfromAPIPercentil to calculate corrfactor like _calcCAQfromDWDcloudcover ",
"0.80.0" => "28.05.2023 Support for Forecast.Solar-API (https://doc.forecast.solar/api), rename Getter solCastData to solApiData ".
"rename ctrlDebug keys: solcastProcess -> apiProcess, solcastAPIcall -> apiCall ".
@@ -12148,26 +12149,32 @@ die ordnungsgemäße Anlagenkonfiguration geprüft werden.
Ausrichtung <dir> der Solarmodule im String "StringnameX". Der Stringname ist ein Schlüsselwert des
Readings inverterStrings.
- Die Richtungsangabe <dir> kann eine der folgenden Werte sein:
+ Die Richtungsangabe <dir> kann als Azimut Kennung oder als Azimut Wert angegeben werden:
N | Nordausrichtung | |
NE | Nord-Ost Ausrichtung | |
E | Ostausrichtung | |
SE | Süd-Ost Ausrichtung | |
S | Südausrichtung | |
SW | Süd-West Ausrichtung | |
W | Westausrichtung | |
NW | Nord-West Ausrichtung | |
Kennung | Azimut | |
N | -180 | Nordausrichtung |
NE | -135 | Nord-Ost Ausrichtung |
E | -90 | Ostausrichtung |
SE | -45 | Süd-Ost Ausrichtung |
S | 0 | Südausrichtung |
SW | 45 | Süd-West Ausrichtung |
W | 90 | Westausrichtung |
NW | 135 | Nord-West Ausrichtung |