Hello, I have hassio running on intel nuc, mosquitto addon which runs well. I have esp8266 running milight hub with firmware from https://github.com/sidoh/esp8266_milight_hub/releases 1.70 dev 6. I use mqtt _json but I am unable to get the bulb discovered and added as light.Left_Lamp. Here is my light config
light:
- platform: mqtt_json
name: Left_Lamp
command_topic: milight_gw/0xxxx/rgbw/3/set
state_topic: milight_gw/state/0xxxx/rgbw/3
brightness: true
rgb: true
white_value: true
effect: true
effect_list: [colorfade_slow, colorfade_fast, flash]
optimistic: false
qos: 0
retain: true
I am using milight_gw on esp8266 as detailed on sidoh github
mqtt_topic_pattern
milight_gw/:device_id/:device_type/:group_id
mqtt_update_topic_pattern
milight_gw/update/:device_id/:device_type/:group_id
mqtt_state_topic_pattern
milight_gw/state/:device_id/:device_type/:group_id
mosquitto_sub on HA shows the light being turned on and off from milight/esp8266 hub (logged into milighthub page) but no device created on HA.
How can I get the devices created in HA either by discovery or manually ? Thanks.