mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 09:16:53 +00:00
76_SMAPortal: contrib 9.9.9
git-svn-id: https://svn.fhem.de/fhem/trunk@23181 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
faa8a03a9d
commit
50babc6287
@ -928,7 +928,7 @@ return ($interval,$maxcycles,$timeoutdef);
|
|||||||
## schaltet auch Verbraucher des Sunny Home Managers
|
## schaltet auch Verbraucher des Sunny Home Managers
|
||||||
################################################################
|
################################################################
|
||||||
sub GetSetData { ## no critic 'complexity'
|
sub GetSetData { ## no critic 'complexity'
|
||||||
my $string = shift;
|
my ($string) = @_;
|
||||||
my ($name,$getp,$setp) = split("\\|",$string);
|
my ($name,$getp,$setp) = split("\\|",$string);
|
||||||
my $hash = $defs{$name};
|
my $hash = $defs{$name};
|
||||||
my $cookieLocation = AttrVal($name, "cookieLocation", "./log/".$name."_cookie.txt");
|
my $cookieLocation = AttrVal($name, "cookieLocation", "./log/".$name."_cookie.txt");
|
||||||
@ -4484,9 +4484,8 @@ return;
|
|||||||
<h3>SMAPortal</h3>
|
<h3>SMAPortal</h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
With this module it is possible to fetch data from the <a href="https://www.sunnyportal.com">SMA Sunny Portal</a> and switch
|
With this module, data can be retrieved from the <a href="https://www.sunnyportal.com">SMA Sunny Portal</a> and
|
||||||
consumers (e.g. bluetooth plug sockets) if any are present.
|
devices which are registered in the SMA Portal can be controlled. <br><br>
|
||||||
At the momentent that are the following data: <br><br>
|
|
||||||
<ul>
|
<ul>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Live data (Consumption and PV-Generation) </li>
|
<li>Live data (Consumption and PV-Generation) </li>
|
||||||
@ -4495,6 +4494,7 @@ return;
|
|||||||
<li>Weather data delivered from SMA for the facility location </li>
|
<li>Weather data delivered from SMA for the facility location </li>
|
||||||
<li>Forecast data (Consumption and PV-Generation) inclusive suggestion times to switch comsumers on </li>
|
<li>Forecast data (Consumption and PV-Generation) inclusive suggestion times to switch comsumers on </li>
|
||||||
<li>the planned times by the Sunny Home Manager to switch consumers on and the current state of consumers (if present) </li>
|
<li>the planned times by the Sunny Home Manager to switch consumers on and the current state of consumers (if present) </li>
|
||||||
|
<li>Control of devices registered with SMA Home Manager or SMA Portal </li>
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
<br>
|
<br>
|
||||||
@ -4572,18 +4572,10 @@ return;
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><b> credentials <username> <password> </b> </li>
|
<li><b> credentials <username> <password> </b> <br>
|
||||||
Set Username / Password used for the login into the SMA Sunny Portal.
|
Set Username / Password used for the login into the SMA Sunny Portal.
|
||||||
</ul>
|
</ul>
|
||||||
<br>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<a name="consumer"></a>
|
|
||||||
<li><b> <consumer name> <on | off | auto> </b> <br>
|
|
||||||
Once consumer data are available, the consumer are shown in the Set and can be switched to on, off or the automatic mode (auto)
|
|
||||||
that means the consumer are controlled by the Sunny Home Manager.
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
@ -4592,9 +4584,29 @@ return;
|
|||||||
Identical to the "get data" command. Simplifies the use of the attribute "webCmd" in the FHEMWEB.
|
Identical to the "get data" command. Simplifies the use of the attribute "webCmd" in the FHEMWEB.
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<a name="consumer"></a>
|
||||||
|
<li><b> <consumer name> <on | off | auto | GC> </b> <br>
|
||||||
|
The consumers connected to the SMA Sunny Homemanager are offered as soon as they are detected by the module.
|
||||||
|
Different types of consumers are recognized by the module and consumer specific actions are offered.
|
||||||
|
<br><br>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<table>
|
||||||
|
<colgroup> <col width=25%> <col width=75%> </colgroup>
|
||||||
|
<tr><td> <b>SMA Bluetoth Sockets</b> </td><td><b>on</b> switch on, <b>off</b> switch off, <b>auto</b> control by the Sunny Home Manager </td></tr>
|
||||||
|
<tr><td> <b>SMA EV Charger</b> </td><td><b>GC</b> Percentage of grid reference to be accepted for charging the electric vehicle (0..100) </td></tr>
|
||||||
|
</table>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
<br><br>
|
<br>
|
||||||
|
|
||||||
<a name="SMAPortalGet"></a>
|
<a name="SMAPortalGet"></a>
|
||||||
<b>Get</b>
|
<b>Get</b>
|
||||||
@ -4810,8 +4822,8 @@ return;
|
|||||||
<h3>SMAPortal</h3>
|
<h3>SMAPortal</h3>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
Mit diesem Modul können Daten aus dem <a href="https://www.sunnyportal.com">SMA Sunny Portal</a> abgerufen werden.
|
Mit diesem Modul können Daten aus dem <a href="https://www.sunnyportal.com">SMA Sunny Portal</a> abgerufen und die am SMA
|
||||||
Momentan sind es: <br><br>
|
Home Manager bzw. im SMA Portal registrierten Geräte gesteuert werden. <br><br>
|
||||||
<ul>
|
<ul>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Live-Daten (Verbrauch und PV-Erzeugung) </li>
|
<li>Live-Daten (Verbrauch und PV-Erzeugung) </li>
|
||||||
@ -4820,6 +4832,7 @@ return;
|
|||||||
<li>Wetter-Daten von SMA für den Anlagenstandort </li>
|
<li>Wetter-Daten von SMA für den Anlagenstandort </li>
|
||||||
<li>Prognosedaten (Verbrauch und PV-Erzeugung) inklusive Verbraucherempfehlung </li>
|
<li>Prognosedaten (Verbrauch und PV-Erzeugung) inklusive Verbraucherempfehlung </li>
|
||||||
<li>die durch den Sunny Home Manager geplanten Schaltzeiten und aktuellen Status von Verbrauchern (sofern vorhanden) </li>
|
<li>die durch den Sunny Home Manager geplanten Schaltzeiten und aktuellen Status von Verbrauchern (sofern vorhanden) </li>
|
||||||
|
<li>Steuerung von am SMA Home Manager bzw. SMA Portal registrierten Geräten </li>
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
<br>
|
<br>
|
||||||
@ -4914,11 +4927,20 @@ return;
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<a name="Verbrauchername"></a>
|
<a name="Verbrauchername"></a>
|
||||||
<li><b> <Verbrauchername> <on | off | auto> </b> <br>
|
<li><b> <Verbrauchername> <on | off | auto | GC> </b> <br>
|
||||||
Es werden die an den SMA Sunny Homemanager angeschlossene Verbraucher (Bluetooth Steckdosen) angeboten sobald sie vom
|
Es werden die an den SMA Sunny Homemanager angeschlossene Verbraucher angeboten sobald sie vom
|
||||||
Modul erkannt wurden.
|
Modul erkannt wurden. Es werden verschiedene Arten von Verbrauchern durch das Modul erkannt und auf den Verbrauchertyp
|
||||||
Sobald diese Daten vorliegen, werden die vorhandenen Verbraucher im Set angezeigt und können eingeschaltet, ausgeschaltet
|
angepasste Aktionen angeboten.
|
||||||
bzw. auf die Steuerung durch den Sunny Home Manager umgeschaltet werden (auto).
|
<br><br>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<table>
|
||||||
|
<colgroup> <col width=25%> <col width=75%> </colgroup>
|
||||||
|
<tr><td> <b>SMA Bluetoth Steckdosen</b> </td><td><b>on</b> einschalten, <b>off</b> ausschalten, <b>auto</b> Steuerung durch den Sunny Home Manager </td></tr>
|
||||||
|
<tr><td> <b>SMA EV Charger</b> </td><td><b>GC</b> Anteil des Netzbezugs in Prozent, der für das Laden des E-Fahrzeugs akzeptiert werden soll (0..100) </td></tr>
|
||||||
|
</table>
|
||||||
|
</ul>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user