MQTT sensor do not appear

Hi,

I’ve added in my configuration a new mqtt sensor (i already have 2 others for this platform), and I’m not able to figure out why my sensor is not visible in my dev-info / states page.

sensor:
  - platform: yr
  - platform: darksky
    api_key: 299632c187f0bbcdf6d5be4cd7ea7632
    monitored_conditions:
      - summary
      - icon
      - nearest_storm_distance  
      - humidity
      - apparent_temperature
      - temperature
      - pressure
      - wind_speed
      - precip_accumulation
      - precip_type
      - precip_probability
  - platform: mqtt
    name: "stoptimertime"
    state_topic: "sensor/stoptimertime"
    qos: 0
  - platform: mqtt
    name: "Humidity"
    state_topic: "sensor/humidity"
    qos: 0
    unit_of_measurement: "%"  
  - platform: mqtt
    name: "dht22temperature"
    state_topic: "sensor/temperature"
    qos: 0
    unit_of_measurement: "°C"   

Sensors Humidity and dht22temperature are visible but I can’t find my sensor “stoptimertime”

Am I missing something important ?
It should be pretty straighforward and I don’t understand.

thanks

I just copied your definition into a test configuration I have, and the device appeared in the /dev-state page on HA startup with a status of unknown.

sensor.stoptimertime	unknown	friendly_name: stoptimertime

So there is something else going on in your configuration if you can’t see it.

Damn, ok, thanks to have take a look.

When I do check my config I get “config is valid”.

Well, I’ll digg into it.