Hey guys,
I think I’m hitting a bug here Here’s what I’m trying to do:
When I press a button, I was to set a variable to $now and trigger a follow up piston to set a flag after 120 minutes. Basically, I want to set a flag 2h past the button pressed.
I have a IF rule
if (button is pressed)
when true do
set variable pressedButtonTime = $now
follow up same piston
or
if (pressedButtonTime > 120) <---------- This condition seems to blow up
when true do
set variable aNewFlag = true
When I try to set the DateTime condition, i’m getting a Error - bad state. Unable to complete page configuration and when I try to go back, I just get You are not authorized to perform the requested operation.
Here’s how I’m trying to set it up:
Capability -> Date & Time
Comparaison: is after
value: time of variable
variable: pressedButtonTime -> As soon as I click it, i’m getting a white screen and if I click Done, i’m getting the Error - bad state. Unable to complete page configuration
Is there something i’m doing wrong here…?