Hi, @Keith_Collins
It seems there are no extra details for this property, but here’s an example of “remainsEqual”
{
"name": "If door is left open for more than 15 minutes, close it automatically",
"actions": [
{
"if": {
"remainsEqual": {
"left": {
"device": {
"devices": [
"deviceID"
],
"component": "main",
"capability": "doorControl",
"attribute": "door"
}
},
"right": {
"string": "open"
},
"interval":{
"value": {
"integer":15
},
"unit":"Minute"
}
},
"then": [
{
"command": {
"devices": [
"deviceID"
],
"commands": [
{
"component": "main",
"capability": "doorControl",
"command": "close",
"arguments": []
}
]
}
}
]
}
}
]
}
I’ll open a report about the need of having more info about it. I remember this came up in the past but I need to track down what happened.