time sensitive scenes....

Ok so i have set up my vera and been using it for months and very much enjoy it. i am new to this forum and this is my first post here. i am not great with forums… i did search for this but i cant find it and it seams like something that everyone would want/ask about. so here i go. I have setup a scene that everytime anyone uses a code on the door to the hous it turns on the kitchen lights. that was easy and it works well. but i dont want it to active from dawn to dusk. how do i set that up? thanks in advanced

In the Luup tab of the scene put:

return (luup.is_night())

The commands will now only be executed when it’s night.

ty i will try that. what would be for daylight?

return not (luup.is_night())

return not (luup.is_night()) [/quote]

I saw this in the wiki

return luup.is_night() == false