Rather than wait till tonite and leave and come back, can anyone tell me if the two “with” statements run concurrently or in sequentially? Need to have both occur at the same time.
//
/* Coming Home */
//
/* Author : Me /
/ Created : 3/10/2018, 7:30:32 PM /
/ Modified : 3/10/2018, 7:39:58 PM /
/ Build : 1 /
/ UI version : v0.3.000.20180224 */
/**************************************************************/
execute
if
Any of phone1’s or phone2’s presence changes to present
and
Time is between sunset and sunrise
then
with
Front Garage 1, Front Garage 2, Front Garage 3, Front Garage 4, Front Porch Left, and Front Porch Right
do
Turn on;
Wait 10 minutes;
Turn off;
end with;
with
Foyer Lamp
do
Set level to 100%;
Wait 10 minutes;
Set level to 10%;
end with;
else
with
Front Garage 1, Front Garage 2, Front Garage 3, Front Garage 4, Front Porch Left, and Front Porch Right
do
Turn off;
end with;
end if;
end execute;
Edit