Jump to content
C4 Forums | Control4

where is "time" in composer


gogogadget

Recommended Posts


All time related programming is available under scheduling.

A little unclear on the details of what you're looking to accomplish.

If you want lighting scene xyz to turn on at a certain time, you'd schedule a specific time, if you want to turn it off you create a scheduled time to turn it off.

 

One option is

 

WHEN kitchen light is turned off
IF time is between xxx and yyy
	Turn on lighting scene zzz

 

So your trigger event is the light turning off, and your time setting is under 'Schedule' under actions.

 

IF you want to turn on the scene more as described further above you'd create a schedule time and go

WHEN scheduled even xx time is triggered
IF kitchen light is off
	Activate lighting scene zzz

 

 

Now if you're looking to activate that lighting scene at that specific time AND re-trigger it should it be off and the kitchen light is turned back off, you'd go

WHEN scheduled event xx time is triggered
Activate lighting scene zzz

AND add

WHEN kitchen light is turned off
IF time is between xxx and yyy
	Turn on lighting scene zzz

This then ensure the scene is activated at the time you want, and should it get turned off, and the kitchen light is turned off, it will go back on.

 

There is a way to start a running timer that would check if the light is off (say every 10 seconds) and if so turn the scene on, but the required system resources for it are (relatively) high so the above method is much better to use.

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.