Tu peux passer par ce petit bout de code que tu mets dans la boucle principale :
local selfID = fibaro:getSelfId()
if ( fibaro:getGlobalValue("MODULE") == "ON" ) then
fibaro:call(selfID, "setProperty", "ui.Label1.value", "ON");
fibaro:call(selfID,"setProperty","currentIcon","NUMERO DE L'ICONE ON");
else
fibaro:call(selfID, "setProperty", "ui.Label1.value", "OFF");
fibaro:call(selfID,"setProperty","currentIcon","NUMERO DE L'ICONE OFF");
end