The most recent update has odd behavior with my mqtt/arduino switches. The icon is the old lightning bolt. However once I activate the switch (Office Desk), one time, the icon changes to the expected icon (like the 4 above it) and doesn’t change back. But if I reboot, it’s wrong again. Been running these for about 2 years without issue. Anything new that I need to update or is this a bug?
- platform: mqtt
name: "Office Desk"
unique_id: light.office_desk_light
command_topic: "mqttuser/feeds/office_desk/lights"
payload_on: "on"
payload_off: "off"
state_topic: 'mqttuser/feeds/office_desk/lights/state'
state_value_template: >-
{% if value == 'on' %}
on
{% elif value == 'off' %}
off
{% else %}
off
{% endif %}
brightness_state_topic: 'mqttuser/feeds/office_desk/lights/bstate'
brightness_command_topic: 'mqttuser/feeds/office_desk/lights'
brightness_value_template: '{{value}}'
rgb_state_topic: 'mqttuser/feeds/office_desk/rgblights/state'
rgb_command_topic: 'mqttuser/feeds/office_desk/rgblights'
on_command_type: 'brightness'