-
Notifications
You must be signed in to change notification settings - Fork 5
/
script_time_chauffage_chambre_consigne.lua
53 lines (32 loc) · 1.76 KB
/
script_time_chauffage_chambre_consigne.lua
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
-------------------------------------------------------------
-- Script d'action des scripts de gestion du chauffage de la chambre
------------------------------------------------------------
package.path = package.path .. ';' .. '/home/pi/domoticz/scripts/lua/?.lua'
require("library")
----------------
-- Paramètres --
----------------
hysteresis = 0.3
-- variables --
chambre_consigne_valeur = uservariables['Var_Chauffage_chambre_Consigne']
chambre_consigne_onoff = otherdevices['Chauffage Chambre Consigne']
chambre_onoff = otherdevices['Radiateur Chambre On/Off']
chambre_confort = otherdevices['Radiateur Chambre Confort']
chambre_temp = otherdevices_temperature['Temp chambre'] or 18
chambre_temp_timediff = timedifference(otherdevices_lastupdate['Temp chambre'])
mode_maison = uservariables['Script_Mode_Maison']
commandArray = {}
-- On active le chauffage de la chambre si le monde consigne est ON et si le monde maison n'est pas sur ABSENT
if(chambre_consigne_onoff == 'On' and mode_maison ~= 'absent') then
if (chambre_temp < chambre_consigne_valeur - hysteresis and chambre_onoff == 'Off' and chambre_temp_timediff < 7200) then -- uniquement si la température a été mise à jour dans les 2 dernières heures
commandArray['Radiateur Chambre On/Off'] = 'On'
print('----- Chauffage Chambre Confort ON ----- Temp: '.. math.round(chambre_temp, 1, ',') )
if (chambre_confort == 'Off') then
commandArray['Radiateur Chambre Confort'] = 'On'
end
elseif (chambre_temp >= chambre_consigne_valeur + hysteresis and chambre_onoff == 'On') then
commandArray['Radiateur Chambre On/Off'] = 'Off'
print('----- Chauffage Chambre OFF ----- Temp: '.. math.round(chambre_temp, 1, ',') )
end
end
return commandArray