Is it possible to disable a specific capability within a device?

My goal/hope is to disable a specific capability within my device when certain conditions occur, but leave the other capabilities and the device itself online. Is this possible?

Cheers

Like volume below? It becomes enabled when the device turns on. Check out visiblecondition on this page.

Thanks Phil, that’s helpful. I’ll give it a try - it’ll probably work.

1 Like

Below are the relevant parts of my device configuration for what’s shown in that screenshot:

"detailView": [
        {
            "component": "main",
            "capability": "switch",
            "version": 1,
            "values": [],
            "patch": []
        },
        {
            "component": "main",
            "capability": "audioVolume",
            "version": 1,
            "visibleCondition": {
                "capability": "switch",
                "version": 1,
                "component": "main",
                "value": "switch.value",
                "operator": "EQUALS",
                "operand": "on"
            },
            "values": [],
            "patch": []
        }
    ]
1 Like