ce que j'ai fait pour que les scenes même autostart redémarre, c'est peut-être moche mais ca marche pour moi !  function Restart2(type, id, restart, notification) Message("blue", 'Restart2 '..type..'('..id..')') local httpClient = net.HTTPClient() httpClient:request("http://127.0.0.1:11111/api/sceneControl?id="..id.."&action=stop") Message("green", type.."("..id..") successfully stop") fibaro:sleep(1000) httpClient:request("http://127.0.0.1:11111/api/sceneControl?id="..id.."&action=start") Message("green", type.."("..id..") successfully restarted") end et dans le code de la fonction restart avant le save ... if restart and restart == true then if type:lower() == "scene" then Restart2(type, id, restart, notification) end -- Save VD/Scene
    • Upvote
    1