osram cluster (#26555)

This commit is contained in:
David F. Mulcahey 2019-09-10 16:44:41 -04:00 committed by Paulus Schoutsen
parent 4f3a2c0443
commit 1cea3a6abc

View File

@ -9,7 +9,7 @@ import logging
from homeassistant.core import callback
from homeassistant.helpers.dispatcher import async_dispatcher_send
from . import AttributeListeningChannel
from . import AttributeListeningChannel, ZigbeeChannel
from .. import registries
from ..const import (
REPORT_CONFIG_ASAP,
@ -34,6 +34,14 @@ class SmartThingsHumidity(AttributeListeningChannel):
]
@registries.CHANNEL_ONLY_CLUSTERS.register(0xFD00)
@registries.ZIGBEE_CHANNEL_REGISTRY.register(0xFD00)
class OsramButton(ZigbeeChannel):
"""Osram button channel."""
REPORT_CONFIG = []
@registries.ZIGBEE_CHANNEL_REGISTRY.register(
registries.SMARTTHINGS_ACCELERATION_CLUSTER
)