MQTT no device - Newbee inside

Dear all,
My first message, so sorry for the question.

I try to used MQTT on HA. I configure MQTT and add line on ma config:

sensor:
- platform: mqtt
state_topic: ‘Jeedom/tempcuisine’
name: ‘Temp cuisine’
unit_of_measurement: ‘°C’
value_template: ‘{{ value_json.temp }}’
- platform: mqtt
state_topic: ‘Jeedom/humcuisine’
name: ‘cuisine Humidité’
unit_of_measurement: ‘%’
value_template: ‘{{ value_json.humidity }}’

In the log, I have :

2020-02-24 13:09:51 DEBUG (MainThread) [homeassistant.components.mqtt] Received message on Jeedom/tempcuisine: b’18.9’
2020-02-24 13:15:08 DEBUG (MainThread) [homeassistant.components.mqtt] Received message on Jeedom/tempcuisine: b’18.92’
2020-02-24 13:15:09 DEBUG (MainThread) [homeassistant.components.mqtt] Received message on Jeedom/humcuisine: b’56.84’

So I Think it’s working ….

But no device in integration MQTT
No value in my dashboard…

Please help me

Please format your code correctly, see this topic for more information.

Go to the Sidebar -> Developer Tools -> States and see if there are sensors called sensor.temp_cuisine and sensor.cuisine_humidite. The MQTT integration page will only show entities that have been discovered automatically. Entities configured in configuration.yaml will not be shown there.

in my state, i have le sensors. And now, I don"t know why, it’s working.

Thank for the help

That wasn’t formatted correctly btw. You’re looking for the </> button not ".
Alternatively three backticks ``` on their own line above and below your code.