mirror of
https://github.com/home-assistant/core.git
synced 2025-07-27 07:07:28 +00:00
Add unique_id to mqtt_json light (#16721)
Applies changes from #16303 to mqtt_json component. Fixes #16600.
This commit is contained in:
parent
258beb9cd3
commit
27eede724c
@ -53,6 +53,7 @@ CONF_EFFECT_LIST = 'effect_list'
|
|||||||
CONF_FLASH_TIME_LONG = 'flash_time_long'
|
CONF_FLASH_TIME_LONG = 'flash_time_long'
|
||||||
CONF_FLASH_TIME_SHORT = 'flash_time_short'
|
CONF_FLASH_TIME_SHORT = 'flash_time_short'
|
||||||
CONF_HS = 'hs'
|
CONF_HS = 'hs'
|
||||||
|
CONF_UNIQUE_ID = 'unique_id'
|
||||||
|
|
||||||
# Stealing some of these from the base MQTT configs.
|
# Stealing some of these from the base MQTT configs.
|
||||||
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
||||||
@ -67,6 +68,7 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|||||||
vol.Optional(CONF_FLASH_TIME_LONG, default=DEFAULT_FLASH_TIME_LONG):
|
vol.Optional(CONF_FLASH_TIME_LONG, default=DEFAULT_FLASH_TIME_LONG):
|
||||||
cv.positive_int,
|
cv.positive_int,
|
||||||
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
||||||
|
vol.Optional(CONF_UNIQUE_ID): cv.string,
|
||||||
vol.Optional(CONF_OPTIMISTIC, default=DEFAULT_OPTIMISTIC): cv.boolean,
|
vol.Optional(CONF_OPTIMISTIC, default=DEFAULT_OPTIMISTIC): cv.boolean,
|
||||||
vol.Optional(CONF_QOS, default=mqtt.DEFAULT_QOS):
|
vol.Optional(CONF_QOS, default=mqtt.DEFAULT_QOS):
|
||||||
vol.All(vol.Coerce(int), vol.In([0, 1, 2])),
|
vol.All(vol.Coerce(int), vol.In([0, 1, 2])),
|
||||||
@ -87,6 +89,7 @@ async def async_setup_platform(hass: HomeAssistantType, config: ConfigType,
|
|||||||
config = PLATFORM_SCHEMA(discovery_info)
|
config = PLATFORM_SCHEMA(discovery_info)
|
||||||
async_add_entities([MqttJson(
|
async_add_entities([MqttJson(
|
||||||
config.get(CONF_NAME),
|
config.get(CONF_NAME),
|
||||||
|
config.get(CONF_UNIQUE_ID),
|
||||||
config.get(CONF_EFFECT_LIST),
|
config.get(CONF_EFFECT_LIST),
|
||||||
{
|
{
|
||||||
key: config.get(key) for key in (
|
key: config.get(key) for key in (
|
||||||
@ -120,14 +123,15 @@ async def async_setup_platform(hass: HomeAssistantType, config: ConfigType,
|
|||||||
class MqttJson(MqttAvailability, Light):
|
class MqttJson(MqttAvailability, Light):
|
||||||
"""Representation of a MQTT JSON light."""
|
"""Representation of a MQTT JSON light."""
|
||||||
|
|
||||||
def __init__(self, name, effect_list, topic, qos, retain, optimistic,
|
def __init__(self, name, unique_id, effect_list, topic, qos, retain,
|
||||||
brightness, color_temp, effect, rgb, white_value, xy, hs,
|
optimistic, brightness, color_temp, effect, rgb, white_value,
|
||||||
flash_times, availability_topic, payload_available,
|
xy, hs, flash_times, availability_topic, payload_available,
|
||||||
payload_not_available, brightness_scale):
|
payload_not_available, brightness_scale):
|
||||||
"""Initialize MQTT JSON light."""
|
"""Initialize MQTT JSON light."""
|
||||||
super().__init__(availability_topic, qos, payload_available,
|
super().__init__(availability_topic, qos, payload_available,
|
||||||
payload_not_available)
|
payload_not_available)
|
||||||
self._name = name
|
self._name = name
|
||||||
|
self._unique_id = unique_id
|
||||||
self._effect_list = effect_list
|
self._effect_list = effect_list
|
||||||
self._topic = topic
|
self._topic = topic
|
||||||
self._qos = qos
|
self._qos = qos
|
||||||
@ -316,6 +320,11 @@ class MqttJson(MqttAvailability, Light):
|
|||||||
"""Return the name of the device if any."""
|
"""Return the name of the device if any."""
|
||||||
return self._name
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return a unique ID."""
|
||||||
|
return self._unique_id
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def is_on(self):
|
def is_on(self):
|
||||||
"""Return true if device is on."""
|
"""Return true if device is on."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user