forked from merlot-dev/Domoticz-SMA-SunnyBoy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplugin.py
198 lines (163 loc) · 7.03 KB
/
plugin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# SMA Sunny Boy Python Plugin for Domoticz
#
# Authors: merlot, rklomp
#
# Based on https://github.com/merlot-dev/Domoticz-SMA-SunnyBoy
"""
<plugin key="SMASunnyBoy" name="SMA Sunny Boy Solar Inverter" author="rklomp" version="1.0.6">
<description>
<h2>SMA Sunny Boy Solar Inverter Plugin</h2><br/>
<h3>Features</h3>
<ul style="list-style-type:square">
<li>Register instant power and daily generated energy</li>
</ul>
</description>
<params>
<param field="Address" label="IP Address" width="200px" required="true"/>
<param field="Password" label="User group password" width="200px" required="true" password="true"/>
<param field="Mode1" label="Protocol" width="75px">
<options>
<option label="HTTPS" value="https"/>
<option label="HTTP" value="http" default="true" />
</options>
</param>
<param field="Mode3" label="Query interval" width="75px" required="true">
<options>
<option label="5 sec" value="1"/>
<option label="15 sec" value="3"/>
<option label="30 sec" value="6"/>
<option label="1 min" value="12" default="true"/>
<option label="3 min" value="36"/>
<option label="5 min" value="60"/>
<option label="10 min" value="120"/>
</options>
</param>
<param field="Mode6" label="Debug" width="75px">
<options>
<option label="True" value="Debug"/>
<option label="False" value="Normal" default="true"/>
</options>
</param>
</params>
</plugin>
"""
import requests
import Domoticz
class BasePlugin:
enabled = False
lastPolled = 0
loginSid = None
baseUrl = None
headers = {'Content-Type': 'application/json', 'Accept-Charset': 'UTF-8'}
maxAttempts = 3
httpTimeout = 1
def __init__(self):
return
def login(self, force=False):
if not force and self.loginSid is not None:
return self.loginSid
try:
url = "%s/login.json" % self.baseUrl
payload = '{"pass" : "%s", "right" : "usr"}' % Parameters["Password"]
r = requests.post(url, data=payload, headers=self.headers, verify=False, timeout=self.httpTimeout)
except Exception as e:
Domoticz.Log("Error accessing SMA inverter on %s; %s" % (Parameters["Address"], e))
else:
j = r.json()
try:
sid = j['result']['sid']
if sid is None:
Domoticz.Error("Unable to login to SMA inverter on %s using supplied password" % Parameters["Address"])
self.loginSid = sid
Domoticz.Status("Successfully logged in to SMA inverter on %s" % Parameters["Address"])
Domoticz.Debug("Received SID: %s" % sid)
return self.loginSid
except:
Domoticz.Log("No valid response from SMA inverter on %s; %s" % (Parameters["Address"], j))
def logout(self):
Domoticz.Status("Closing session to SMA inverter on %s" % Parameters["Address"])
url = "%s/logout.json?sid=%s" % (self.baseUrl, self.loginSid)
r = requests.post(url, data="{}", headers=self.headers, verify=False, timeout=self.httpTimeout)
Domoticz.Debug(r.text)
def onStart(self):
Domoticz.Debug("onStart called")
if Parameters["Mode6"] == "Debug":
Domoticz.Debugging(1)
else:
Domoticz.Debugging(0)
if len(Devices) == 0:
Domoticz.Device(Name="PV Generation", Unit=1, Type=243, Subtype=29, Switchtype=4).Create()
Domoticz.Device(Name="kWh total", Unit=2, TypeName="Custom", Options={"Custom": "1;kWh"}).Create()
DumpConfigToLog()
self.baseUrl = "%s://%s/dyn" % (Parameters["Mode1"], Parameters["Address"])
Domoticz.Debug("Base URL is set to %s" % self.baseUrl)
self.login()
Domoticz.Heartbeat(5)
def onStop(self):
Domoticz.Debug("onStop called")
self.logout()
def onHeartbeat(self):
Domoticz.Debug("onHeartbeat called %d" % self.lastPolled)
if self.lastPolled == 0:
attempt = 1
relogin = False
while True:
if attempt <= self.maxAttempts:
if attempt > 1:
Domoticz.Debug("Previous attempt failed, trying new login...")
relogin = True
else:
Domoticz.Error("Failed to retrieve data from %s, cancelling..." % Parameters["Address"])
break
attempt += 1
sid = self.login(relogin)
url = "%s/getValues.json?sid=%s" % (self.baseUrl, sid)
payload = '{"destDev":[],"keys":["6400_00260100","6100_40263F00"]}'
try:
r = requests.post(url, data=payload, headers=self.headers, verify=False, timeout=self.httpTimeout)
j = r.json()
except Exception as e:
Domoticz.Log("No data from SMA inverter on %s; %s" % (Parameters["Address"], e))
else:
Domoticz.Debug("Received data: %s" % j)
if "err" in j:
continue
result = list(j['result'].values())[0]
sma_pv_watt = result['6100_40263F00']['1'][0]['val']
sma_kwh_total = result['6400_00260100']['1'][0]['val']
if sma_pv_watt is None:
sma_pv_watt = 0
if sma_kwh_total is None:
Domoticz.Log("Received data from %s, but values are None" % Parameters["Address"])
break
Devices[1].Update(nValue=0, sValue=str(sma_pv_watt)+";"+str(sma_kwh_total))
svalue = "%.2f" % (sma_kwh_total/1000)
Devices[2].Update(nValue=0, sValue=svalue.replace('.', ','))
break
self.lastPolled += 1
self.lastPolled %= int(Parameters["Mode3"])
global _plugin
_plugin = BasePlugin()
def onStart():
global _plugin
_plugin.onStart()
def onStop():
global _plugin
_plugin.onStop()
def onHeartbeat():
global _plugin
_plugin.onHeartbeat()
# Generic helper functions
def DumpConfigToLog():
for x in Parameters:
if Parameters[x] != "":
Domoticz.Debug("'" + x + "':'" + str(Parameters[x]) + "'")
Domoticz.Debug("Device count: " + str(len(Devices)))
for x in Devices:
Domoticz.Debug("Device: " + str(x) + " - " + str(Devices[x]))
Domoticz.Debug("Device ID: '" + str(Devices[x].ID) + "'")
Domoticz.Debug("Device Name: '" + Devices[x].Name + "'")
Domoticz.Debug("Device nValue: " + str(Devices[x].nValue))
Domoticz.Debug("Device sValue: '" + Devices[x].sValue + "'")
Domoticz.Debug("Device LastLevel: " + str(Devices[x].LastLevel))
return