Welcome to Smart Home Forum by FIBARO
Dear Guest,
as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.
As a member you can:
- Start new topics and reply to others
- Follow topics and users to get email updates
- Get your own profile page and make new friends
- Send personal messages
- ... and learn a lot about our system!
Regards,
Smart Home Forum by FIBARO Team
Question
Mistrzyk 0
Proszę o pomoc w napisaniu prostej sceny na hcl3 urządzenie powinno się włączyć na 20 sekund co godzien i tak w nieskończoność. Na blokach raczej nie ma mozliwosci ustawienia czasu w sekundach wiec zostaje lua poskladalem cos takiego ale nie dziala
local lightSwitchId = 123
local lightOnDuration = 20
function toggleLight()
fibaro.call(lightSwitchId, "turnOn")
fibaro.sleep(lightOnDuration * 1000)
fibaro.call(lightSwitchId, "turnOff")
end
while true do
toggleLight() -- Call the function to toggle the light
fibaro.sleep(3600 * 1000) -- Wait for 1 hour (3600 seconds)
end
będę wdzięczny za pomoc
Edited by Mistrzyk1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.