MQTT and espeasy

hi, I’m struggling with a sensor on a esp8266 with espeasy as OS. It sends mqtt messages via Mosquitto on a Raspberry Pi where Home Assistant is on a different Pi.
MQTT explorer shows the correct message and even HA does that using MQTT settings “Listen to a topic”. This is that message:
Message 0 received on BME680 blokhut voorzijde/BME680/Temperature at 11:01 AM:
0.73

The sensor is a bme680 and this is my mqtt.yaml:
. . .
mqtt:
sensor:

  • name: “BME680”
    qos: 0
    state_topic: “BME680 blokhut voorzijde/BME680/Temperature”
    unit_of_measurement: “°C”
    value_template: “{{ value_json.Temperature }}”
  • name: “Humidity”
    state_topic: “BME680 blokhut voorzijde/BME680/Humidity”
    unit_of_measurement: “%”
    value_template: “{{ value_json.humidity }}”
    . . .
    HA acknowleged it and I reloaded. But it did not show up as a new identity.
    I searched on the Internet and saw a few youtube whitch instructions I followed.
    No result.
    I need help on this one.