-
Notifications
You must be signed in to change notification settings - Fork 14
/
plugin.py
578 lines (524 loc) · 28.3 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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
# MELCloud Plugin
# Author: Gysmo, 2017
# Version: 0.7.7
#
# Release Notes:
# v0.7.8: Code optimization
# v0.7.7: Add test on domoticz dummy
# v0.7.6: Fix Auto Mode added
# v0.7.5: Fix somes bugs and improve https connection
# v0.7.4: Sometimes update fail. Update function sync to avoid this
# v0.7.3: Add test in login process and give message if there is some errors
# v0.7.2: Correct bug for onDisconnect, add timeoffset and add update time for last command in switch text
# v0.7.1: Correct bug with power on and power off
# v0.7 : Use builtin https support to avoid urllib segmentation fault on binaries
# v0.6.1 : Change Update function to not crash with RPI
# v0.6 : Rewrite of the module to be easier to maintain
# v0.5.1: Problem with device creation
# v0.5 : Upgrade code to be compliant wih new functions
# v0.4 : Search devices in floors, areas and devices
# v0.3 : Add Next Update information, MAC Address and Serial Number
# Add Horizontal vane
# Add Vertival vane
# Add Room Temp
# v0.2 : Add sync between Domoticz devices and MELCloud devices
# Usefull if you use your Mitsubishi remote
# v0.1 : Initial release
"""
<plugin key="MELCloud" version="0.7.8" name="MELCloud plugin" author="gysmo" wikilink="http://www.domoticz.com/wiki/Plugins/MELCloud.html" externallink="http://www.melcloud.com">
<params>
<param field="Username" label="Email" width="200px" required="true" />
<param field="Password" label="Password" width="200px" required="true" />
<param field="Mode1" label="GMT Offset" width="75 px">
<options>
<option label="-12" value="-12"/>
<option label="-11" value="-11"/>
<option label="-10" value="-10"/>
<option label="-9" value="-9"/>
<option label="-8" value="-8"/>
<option label="-7" value="-7"/>
<option label="-6" value="-6"/>
<option label="-5" value="-5"/>
<option label="-4" value="-4"/>
<option label="-3" value="-3"/>
<option label="-2" value="-2"/>
<option label="-1" value="-1"/>
<option label="0" value="0" default="true" />
<option label="+1" value="+1"/>
<option label="+2" value="+2"/>
<option label="+3" value="+3"/>
<option label="+4" value="+4"/>
<option label="+5" value="+5"/>
<option label="+6" value="+6"/>
<option label="+7" value="+7"/>
<option label="+8" value="+8"/>
<option label="+9" value="+9"/>
<option label="+10" value="+10"/>
<option label="+11" value="+11"/>
<option label="+12" value="+12"/>
</options>
</param>
<param field="Mode6" label="Debug" width="150px">
<options>
<option label="None" value="0" default="true" />
<option label="Python Only" value="2"/>
<option label="Basic Debugging" value="62"/>
<option label="Basic+Messages" value="126"/>
<option label="Connections Only" value="16"/>
<option label="Connections+Python" value="18"/>
<option label="Connections+Queue" value="144"/>
<option label="All" value="-1"/>
</options>
</param>
</params>
</plugin>
"""
import time
import json
import Domoticz
class BasePlugin:
melcloud_conn = None
melcloud_baseurl = "app.melcloud.com"
melcloud_port = "443"
melcloud_key = None
melcloud_state = "Not Ready"
melcloud_urls = {}
melcloud_urls["login"] = "/Mitsubishi.Wifi.Client/Login/ClientLogin"
melcloud_urls["list_unit"] = "/Mitsubishi.Wifi.Client/User/ListDevices"
melcloud_urls["set_unit"] = "/Mitsubishi.Wifi.Client/Device/SetAta"
melcloud_urls["unit_info"] = "/Mitsubishi.Wifi.Client/Device/Get"
list_units = []
dict_devices = {}
list_switchs = []
list_switchs.append({"id": 1, "name": "Mode", "typename": "Selector Switch",
"image": 16, "levels": "Off|Warm|Cold|Vent|Dry|Auto"})
list_switchs.append({"id": 2, "name": "Fan", "typename": "Selector Switch",
"image": 7, "levels": "Level1|Level2|Level3|Level4|Level5|Auto|Silence"})
list_switchs.append({"id": 3, "name": "Temp", "typename": "Selector Switch",
"image": 15, "levels": "16|17|18|19|20|21|22|23|24|25|26|27|28|29|30|31"})
list_switchs.append({"id": 4, "name": "Vane Horizontal", "typename": "Selector Switch",
"image": 7, "levels": "1|2|3|4|5|Swing|Auto"})
list_switchs.append({"id": 5, "name": "Vane Vertical", "typename": "Selector Switch",
"image": 7, "levels": "1|2|3|4|5|Swing|Auto"})
list_switchs.append({"id": 6, "name": "Room Temp", "typename": "Temperature"})
list_switchs.append({"id": 7, "name": "Unit Infos", "typename": "Text"})
domoticz_levels = {}
domoticz_levels["mode"] = {"0": 0, "10": 1, "20": 3, "30": 7, "40": 2, "50": 8}
domoticz_levels["mode_pic"] = {"0": 9, "10": 15, "20": 16, "30": 7, "40": 11}
domoticz_levels["fan"] = {"0": 1, "10": 2, "20": 3, "30": 4, "40": 255, "50": 0, "60": 1}
domoticz_levels["temp"] = {"0": 16, "10": 17, "20": 18, "30": 19, "40": 20, "50": 21,
"60": 22, "70": 23, "80": 24, "90": 25, "100": 26,
"110": 27, "120": 28, "130": 29, "140": 30, "150": 31}
domoticz_levels["vaneH"] = {"0": 1, "10": 2, "20": 3, "30": 4, "40": 5, "50": 12, "60": 0}
domoticz_levels["vaneV"] = {"0": 1, "10": 2, "20": 3, "30": 4, "40": 5, "50": 7, "60": 0}
runAgain = 6
enabled = False
def __init__(self):
return
def onStart(self):
Domoticz.Heartbeat(25)
if Parameters["Mode6"] == "Debug":
Domoticz.Debugging(62)
# Start connection to MELCloud
self.melcloud_conn = Domoticz.Connection(Name="MELCloud", Transport="TCP/IP",
Protocol="HTTPS", Address=self.melcloud_baseurl,
Port=self.melcloud_port)
if __name__ == "__main__":
self.melcloud_conn.bp = self
self.melcloud_conn.Connect()
return True
def onStop(self):
Domoticz.Log("Goobye from MELCloud plugin.")
def onConnect(self, Connection, Status, Description):
if Status == 0:
Domoticz.Log("MELCloud connection OK")
self.melcloud_state = "READY"
self.melcloud_login()
else:
Domoticz.Log("MELCloud connection FAIL: "+Description)
def extractDeviceData(self, device):
if device['DeviceName'] not in self.dict_devices.keys():
self.dict_devices['DeviceName'] = device
# print('\n---device\n', device, '\n---\n')
if 'HasEnergyConsumedMeter' in device['Device'].keys():
return device['Device']['CurrentEnergyConsumed']/1000
else:
return 0
def searchUnits(self, building, scope, idoffset):
# building["Structure"]["Devices"]
# building["Structure"]["Areas"]
# building["Structure"]["Floors"]
nr_of_Units = 0
cEnergyConsumed = 0
# Search in scope
def oneUnit(self, device, idoffset, nr_of_Units, cEnergyConsumed, building, scope):
self.melcloud_add_unit(device, idoffset)
idoffset += len(self.list_switchs)
nr_of_Units += 1
self.extractDeviceData(device)
currentEnergyConsumed = self.extractDeviceData(device)
cEnergyConsumed += currentEnergyConsumed
text2log = "Found {} in building {} {} CurrentEnergyConsumed {} kWh"
text2log = text2log.format(device['DeviceName'],
building["Name"],
scope, currentEnergyConsumed)
Domoticz.Log(text2log)
return (nr_of_Units, idoffset, cEnergyConsumed)
for item in building["Structure"][scope]:
if scope == u'Devices':
if item["Type"] == 0:
(nr_of_Units, idoffset, cEnergyConsumed) = oneUnit(self, item, idoffset,
nr_of_Units, cEnergyConsumed,
building, scope)
elif scope in (u'Areas', u'Floors'):
for device in item["Devices"]:
(nr_of_Units, idoffset, cEnergyConsumed) = oneUnit(self, device, idoffset,
nr_of_Units, cEnergyConsumed,
building, scope)
if scope == u'Floors':
for device in item["Areas"]:
(nr_of_Units, idoffset, cEnergyConsumed) = oneUnit(self, device, idoffset,
nr_of_Units, cEnergyConsumed,
building, scope)
text2log = u'Found {} devices in building {} {} of the Type 0 (Aircondition) CurrentEnergyConsumed {:.0f} kWh'
text2log = text2log.format(str(nr_of_Units), building["Name"], scope, cEnergyConsumed)
Domoticz.Log(text2log)
return (nr_of_Units, idoffset, cEnergyConsumed)
def onMessage(self, Connection, Data):
Status = int(Data["Status"])
if Status == 200:
strData = Data["Data"].decode("utf-8", "ignore")
response = json.loads(strData)
Domoticz.Debug("JSON REPLY: "+str(response))
if self.melcloud_state == "LOGIN":
if ("ErrorId" not in response.keys()) or (response["ErrorId"] is None):
Domoticz.Log("MELCloud login successfull")
self.melcloud_key = response["LoginData"]["ContextKey"]
self.melcloud_units_init()
elif response["ErrorId"] == 1:
Domoticz.Log("MELCloud login fail: check login and password")
self.melcloud_state = "LOGIN_FAILED"
else:
Domoticz.Log("MELCloud failed with unknown error "+str(response["ErrorId"]))
self.melcloud_state = "LOGIN_FAILED"
elif self.melcloud_state == "UNITS_INIT":
idoffset = 0
Domoticz.Log("Find " + str(len(response)) + " buildings")
for building in response:
Domoticz.Log("Find " + str(len(building["Structure"]["Areas"])) +
" areas in building "+building["Name"])
Domoticz.Log("Find " + str(len(building["Structure"]["Floors"])) +
" floors in building "+building["Name"])
# Search in devices
(nr_of_Units, idoffset, cEnergyConsumed) = self.searchUnits(building, "Devices", idoffset)
# Search in areas
(nr_of_Units, idoffset, cEnergyConsumed) = self.searchUnits(building, "Areas", idoffset)
# Search in floors
(nr_of_Units, idoffset, cEnergyConsumed) = self.searchUnits(building, "Floors", idoffset)
self.melcloud_create_units()
elif self.melcloud_state == "UNIT_INFO":
for unit in self.list_units:
if unit['id'] == response['DeviceID']:
Domoticz.Log("Update unit {0} information.".format(unit['name']))
unit['power'] = response['Power']
unit['op_mode'] = response['OperationMode']
unit['room_temp'] = response['RoomTemperature']
unit['set_temp'] = response['SetTemperature']
unit['set_fan'] = response['SetFanSpeed']
unit['vaneH'] = response['VaneHorizontal']
unit['vaneV'] = response['VaneVertical']
unit['next_comm'] = False
Domoticz.Debug("Heartbeat unit info: "+str(unit))
self.domoticz_sync_switchs(unit)
elif self.melcloud_state == "SET":
for unit in self.list_units:
if unit['id'] == response['DeviceID']:
date, time = response['NextCommunication'].split("T")
hours, minutes, sec = time.split(":")
mode1 = Parameters["Mode1"]
if mode1 == '0':
mode1 = '+0'
sign = mode1[0]
value = mode1[1:]
Domoticz.Debug("TIME OFFSSET :" + sign + value)
if sign == "-":
hours = int(hours) - int(value)
if hours < 0:
hours = hours + 24
else:
hours = int(hours) + int(value)
if hours > 24:
hours = hours - 24
next_comm = date + " " + str(hours) + ":" + minutes + ":" + sec
unit['next_comm'] = "Update for last command at "+next_comm
Domoticz.Log("Next update for command: " + next_comm)
self.domoticz_sync_switchs(unit)
else:
Domoticz.Log("State not implemented:" + self.melcloud_state)
else:
Domoticz.Log("MELCloud receive unknonw message with error code "+Data["Status"])
def onCommand(self, Unit, Command, Level, Hue):
Domoticz.Log("onCommand called for Unit " + str(Unit) +
": Parameter '" + str(Command) + "', Level: " + str(Level))
# ~ Get switch function: mode, fan, temp ...
switch_id = Unit
while switch_id > 7:
switch_id -= 7
switch_type = self.list_switchs[switch_id-1]["name"]
# ~ Get the unit in units array
current_unit = False
for unit in self.list_units:
if (unit['idoffset'] + self.list_switchs[switch_id-1]["id"]) == Unit:
current_unit = unit
break
if switch_type == 'Mode':
if Level == 0:
flag = 1
current_unit['power'] = 'false'
Domoticz.Log("Switch Off the unit "+current_unit['name'] +
"with ID offset " + str(current_unit['idoffset']))
Devices[1+current_unit['idoffset']].Update(nValue=0, sValue=str(Level), Image=9)
Devices[2+current_unit['idoffset']].Update(nValue=0,
sValue=str(Devices[Unit + 1].sValue))
Devices[3+current_unit['idoffset']].Update(nValue=0,
sValue=str(Devices[Unit + 2].sValue))
Devices[4+current_unit['idoffset']].Update(nValue=0,
sValue=str(Devices[Unit + 3].sValue))
Devices[5+current_unit['idoffset']].Update(nValue=0,
sValue=str(Devices[Unit + 4].sValue))
Devices[6+current_unit['idoffset']].Update(nValue=0,
sValue=str(Devices[Unit + 5].sValue))
elif Level == 10:
Domoticz.Log("Set to WARM the unit "+current_unit['name'])
Devices[1+current_unit['idoffset']].Update(nValue=1, sValue=str(Level), Image=15)
elif Level == 20:
Domoticz.Log("Set to COLD the unit "+current_unit['name'])
Devices[1+current_unit['idoffset']].Update(nValue=1, sValue=str(Level), Image=16)
elif Level == 30:
Domoticz.Log("Set to Vent the unit "+current_unit['name'])
Devices[1+current_unit['idoffset']].Update(nValue=1, sValue=str(Level), Image=7)
elif Level == 40:
Domoticz.Log("Set to Dry the unit "+current_unit['name'])
Devices[1+current_unit['idoffset']].Update(nValue=1, sValue=str(Level), Image=11)
elif Level == 50:
Domoticz.Log("Set to Auto the unit "+current_unit['name'])
Devices[1+current_unit['idoffset']].Update(nValue=1, sValue=str(Level), Image=11)
if Level != 0:
flag = 1
current_unit['power'] = 'true'
self.melcloud_set(current_unit, flag)
flag = 6
current_unit['power'] = 'true'
current_unit['op_mode'] = self.domoticz_levels['mode'][str(Level)]
Devices[2+current_unit['idoffset']].Update(nValue=1,
sValue=str(Devices[Unit + 1].sValue))
Devices[3+current_unit['idoffset']].Update(nValue=1,
sValue=str(Devices[Unit + 2].sValue))
Devices[4+current_unit['idoffset']].Update(nValue=1,
sValue=str(Devices[Unit + 3].sValue))
Devices[5+current_unit['idoffset']].Update(nValue=1,
sValue=str(Devices[Unit + 4].sValue))
Devices[6+current_unit['idoffset']].Update(nValue=1,
sValue=str(Devices[Unit + 5].sValue))
elif switch_type == 'Fan':
flag = 8
current_unit['set_fan'] = self.domoticz_levels['fan'][str(Level)]
Domoticz.Log("Change FAN to value {0} for {1} ".format(self.domoticz_levels['temp'][str(Level)], current_unit['name']))
Devices[Unit].Update(nValue=Devices[Unit].nValue, sValue=str(Level))
elif switch_type == 'Temp':
flag = 4
setTemp = 16
if Level != 0:
setTemp = int(str(Level).strip("0")) + 16
Domoticz.Log("Change Temp to " + str(setTemp) + " for "+unit['name'])
current_unit['set_temp'] = self.domoticz_levels['temp'][str(Level)]
Devices[Unit].Update(nValue=Devices[Unit].nValue, sValue=str(Level))
elif switch_type == 'Vane Horizontal':
flag = 256
current_unit['vaneH'] = self.domoticz_levels['vaneH'][str(Level)]
Domoticz.Debug("Change Vane Horizontal to value {0} for {1}".format(self.domoticz_levels['vaneH'][str(Level)], current_unit['name']))
Devices[Unit].Update(Devices[Unit].nValue, str(Level))
elif switch_type == 'Vane Vertical':
flag = 16
current_unit['vaneV'] = self.domoticz_levels['vaneV'][str(Level)]
Domoticz.Debug("Change Vane Vertical to value {0} for {1}".format(self.domoticz_levels['vaneV'][str(Level)], current_unit['name']))
Devices[Unit].Update(Devices[Unit].nValue, str(Level))
else:
Domoticz.Log("Device not found")
self.melcloud_set(current_unit, flag)
return True
def onNotification(self, Name, Subject, Text, Status, Priority, Sound, ImageFile):
Domoticz.Log("Notification: " + Name + "," + Subject + "," + Text + "," +
Status + "," + str(Priority) + "," + Sound + "," + ImageFile)
def onDisconnect(self, Connection):
self.melcloud_state = "Not Ready"
Domoticz.Log("MELCloud has disconnected")
self.runAgain = 1
def onHeartbeat(self):
if (self.melcloud_conn is not None and (self.melcloud_conn.Connecting() or self.melcloud_conn.Connected())):
if self.melcloud_state != "LOGIN_FAILED":
Domoticz.Debug("Current MEL Cloud Key ID:"+str(self.melcloud_key))
for unit in self.list_units:
self.melcloud_get_unit_info(unit)
else:
self.runAgain = self.runAgain - 1
if self.runAgain <= 0:
if self.melcloud_conn is None:
self.melcloud_conn = Domoticz.Connection(Name="MELCloud", Transport="TCP/IP", Protocol="HTTPS",
Address=self.melcloud_baseurl, Port=self.melcloud_port)
self.melcloud_conn.Connect()
self.runAgain = 6
else:
Domoticz.Debug("MELCloud https failed. Reconnected in "+str(self.runAgain)+" heartbeats.")
def melcloud_create_units(self):
Domoticz.Log("Units infos " + str(self.list_units))
if len(Devices) == 0:
# Init Devices
# Creation of switches
Domoticz.Log("Find " + str(len(self.list_units)) + " devices in MELCloud")
for device in self.list_units:
Domoticz.Log("Creating device: " + device['name'] + " with melID " + str(device['id']))
for switch in self.list_switchs:
# Create switchs
if switch["typename"] == "Selector Switch":
switch_options = {"LevelNames": switch["levels"], "LevelOffHidden": "false", "SelectorStyle": "1"}
Domoticz.Device(Name=device['name'] + " - "+switch["name"], Unit=switch["id"]+device['idoffset'],
TypeName=switch["typename"], Image=switch["image"], Options=switch_options, Used=1).Create()
else:
Domoticz.Device(Name=device['name'] + " - "+switch["name"], Unit=switch["id"]+device['idoffset'],
TypeName=switch["typename"], Used=1).Create()
def melcloud_send_data(self, url, values, state):
self.melcloud_state = state
if self.melcloud_key is not None:
headers = {'Content-Type': 'application/x-www-form-urlencoded;',
'Host': self.melcloud_baseurl,
'User-Agent': 'Domoticz/1.0',
'X-MitsContextKey': self.melcloud_key}
if state == "SET":
self.melcloud_conn.Send({'Verb': 'POST', 'URL': url, 'Headers': headers, 'Data': values})
else:
self.melcloud_conn.Send({'Verb': 'GET', 'URL': url, 'Headers': headers, 'Data': values})
else:
headers = {'Content-Type': 'application/x-www-form-urlencoded;',
'Host': self.melcloud_baseurl,
'User-Agent': 'Domoticz/1.0'}
self.melcloud_conn.Send({'Verb': 'POST', 'URL': url, 'Headers': headers, 'Data': values})
return True
def melcloud_login(self):
data = "AppVersion=1.9.3.0&Email={0}&Password={1}".format(Parameters["Username"], Parameters["Password"])
self.melcloud_send_data(self.melcloud_urls["login"], data, "LOGIN")
return True
def melcloud_add_unit(self, device, idoffset):
melcloud_unit = {}
melcloud_unit['name'] = device["DeviceName"]
melcloud_unit['id'] = device["DeviceID"]
melcloud_unit['macaddr'] = device["MacAddress"]
melcloud_unit['sn'] = device["SerialNumber"]
melcloud_unit['building_id'] = device["BuildingID"]
melcloud_unit['power'] = ""
melcloud_unit['op_mode'] = ""
melcloud_unit['room_temp'] = ""
melcloud_unit['set_temp'] = ""
melcloud_unit['set_fan'] = ""
melcloud_unit['vaneH'] = ""
melcloud_unit['vaneV'] = ""
melcloud_unit['next_comm'] = False
melcloud_unit['idoffset'] = idoffset
self.list_units.append(melcloud_unit)
def melcloud_units_init(self):
self.melcloud_send_data(self.melcloud_urls["list_unit"], None, "UNITS_INIT")
return True
def melcloud_set(self, unit, flag):
post_fields = "Power={0}&DeviceID={1}&OperationMode={2}&SetTemperature={3}&SetFanSpeed={4}&VaneHorizontal={5}&VaneVertical={6}&EffectiveFlags={7}&HasPendingCommand=true"
post_fields = post_fields.format(unit['power'], unit['id'], unit['op_mode'], unit['set_temp'], unit['set_fan'], unit['vaneH'], unit['vaneV'], flag)
Domoticz.Debug("SET COMMAND SEND {0}".format(post_fields))
self.melcloud_send_data(self.melcloud_urls["set_unit"], post_fields, "SET")
def melcloud_get_unit_info(self, unit):
url = self.melcloud_urls["unit_info"] + "?id=" + str(unit['id']) + "&buildingID=" + str(unit['building_id'])
self.melcloud_send_data(url, None, "UNIT_INFO")
def domoticz_sync_switchs(self, unit):
# Default value in case of problem
setDomFan = 0
setDomTemp = 0
setDomVaneH = 0
setDomVaneV = 0
if unit['next_comm'] is not False:
Devices[self.list_switchs[6]["id"]+unit["idoffset"]].Update(nValue=1, sValue=str(unit['next_comm']))
else:
if unit['power']:
switch_value = 1
for level, mode in self.domoticz_levels["mode"].items():
if mode == unit['op_mode']:
setModeLevel = level
else:
switch_value = 0
setModeLevel = '0'
for level, pic in self.domoticz_levels["mode_pic"].items():
if level == setModeLevel:
setPicID = pic
Devices[self.list_switchs[0]["id"]+unit["idoffset"]].Update(nValue=switch_value,
sValue=setModeLevel,
Image=setPicID)
for level, fan in self.domoticz_levels["fan"].items():
if fan == unit['set_fan']:
setDomFan = level
Devices[self.list_switchs[1]["id"]+unit["idoffset"]].Update(nValue=switch_value,
sValue=setDomFan)
for level, temp in self.domoticz_levels["temp"].items():
if temp == unit['set_temp']:
setDomTemp = level
Devices[self.list_switchs[2]["id"]+unit["idoffset"]].Update(nValue=switch_value,
sValue=setDomTemp)
for level, vaneH in self.domoticz_levels["vaneH"].items():
if vaneH == unit['vaneH']:
setDomVaneH = level
Devices[self.list_switchs[3]["id"]+unit["idoffset"]].Update(nValue=switch_value,
sValue=setDomVaneH)
for level, vaneV in self.domoticz_levels["vaneV"].items():
if vaneV == unit['vaneV']:
setDomVaneV = level
Devices[self.list_switchs[4]["id"]+unit["idoffset"]].Update(nValue=switch_value,
sValue=setDomVaneV)
Devices[self.list_switchs[5]["id"]+unit["idoffset"]].Update(nValue=switch_value,
sValue=str(unit['room_temp']))
global _plugin
_plugin = BasePlugin()
def onStart():
""" On start """
global _plugin
_plugin.onStart()
def onStop():
global _plugin
""" On stop """
_plugin.onStop()
def onConnect(Connection, Status, Description):
global _plugin
""" On connect """
_plugin.onConnect(Connection, Status, Description)
def onMessage(Connection, Data):
global _plugin
""" On message """
_plugin.onMessage(Connection, Data)
def onCommand(Unit, Command, Level, Hue):
global _plugin
""" On command """
_plugin.onCommand(Unit, Command, Level, Hue)
def onNotification(Name, Subject, Text, Status, Priority, Sound, ImageFile):
""" On notification """
global _plugin
_plugin.onNotification(Name, Subject, Text, Status, Priority, Sound, ImageFile)
def onDisconnect(Connection):
""" On disconnect """
global _plugin
_plugin.onDisconnect(Connection)
def onHeartbeat():
""" Heartbeat """
global _plugin
_plugin.onHeartbeat()
if __name__ == "__main__":
from Domoticz import Parameters
from Domoticz import Images
from Domoticz import Devices
from TestCode import runtest
runtest(BasePlugin())
exit(0)