Hello! I have some zwave units set up and talking to HG properly, reporting their status as expected. I'd like to try automating some lights as a starting point in HG, but have not been able to find any appropriate examples on the web site. The "Overview by Example" section is all code examples, nothing about how to use the very nice GUI to set up automation.
Here are two scenarios I'd like to try to get my feet wet, hopefully using the GUI so I don't have to learn C#. One is to simply turn a light switch on at sunset. The other is to turn the lights on after sunset when the front door opens.
First example:
if (currentTime >= sunsetTime)
turn on lightSwitch1
And what about this:
if (currentTime >= sunsetTime) and (doorSensor == open)
turn on lightSwitch1
Can this be done without delving into manual C# scripting?
Thanks much. I'm very intrigued by HG so far. I just need to wrap my head around making it "work" for my use cases now.
Ryan