Hue/LivingDimmer/off-short.1.rule.json
2018-04-11 07:02:25 +02:00

35 lines
543 B
JSON

{
"name": "BASENAME.off-short.1",
"conditions": [
{
"address": "/sensors/DIMMER/state/buttonevent",
"operator": "eq",
"value": "4002"
},
{
"address": "/sensors/MEM/state/status",
"operator": "eq",
"value": "1"
},
{
"address": "/sensors/DIMMER/state/lastupdated",
"operator": "dx"
}
],
"actions": [
{
"address": "/sensors/MEM/state",
"method": "PUT",
"body": {
"status": 0
}
},
{
"address": "/groups/GROUP1/action",
"method": "PUT",
"body": {
"on": false
}
}
]
}