MQTT intergration

I have installed a MQTT integration into Home Assistant . I have a external computer running as a MQTT broker which receives information from an ESP2666 wifi unit. I can see the data int he listen mode of the integration on the Home Assistant. I have this installed in my Configuration YAML file
‘’’
sensor:

  • platform: mqtt
    name: “Boiler_Water_Temp”
    state_topic: “IP_Temp”
    unit_of_measurement: ‘°C’

  • platform: mqtt
    name: "Return_Water_Temp "
    state_topic: “RTN_Temp”
    unit_of_measurement: ‘°C’
    ‘’’

But these sensors do not show up on the Developer Tools can any one explain why.

Because the MQTT configuration oif sensors has changed.

you no longer configure mqtt sensors under the “sensor:” key. It now goes under the “mqtt:” key.

1 Like

Thanks for the help. Did not realize that the configuration for mqtt sensors had changed in the configuration.yaml file.

1 Like