Au final j'ai fais comme ça.....
une scène qui vérifie le statut de la maison avant de partir
ou quand on veut en fait :p
est-ce que j'ai bien fais ? ou je peux optimiser le code ?
en tout cas ça semble plutot bien marcher :p
je suis trop content
--[[ Fenetre 1 du salon --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(367, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "20");
end
--[[ Fenetre 2 du salon --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(363, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "21");
end
--[[ Fenetre WC --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(378, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "23");
end
--[[ Fenetre Cuisine --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(371, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "24");
end
--[[ Fenetre Couloir Accès Garage --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(382, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "22");
end
--[[ Fenetre Kenzo Velux --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(390, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "25");
end
--[[ Porte d'entrée --]]
local startSource = fibaro:getSourceTrigger();
if
( tonumber(fibaro:getValue(85, "value")) > 0 )
then
fibaro:call(395, "sendDefinedPushNotification", "9");
end