Read room temperature with DS18B20 and ESPeasy

Hello!
I’ve been strugling with the integration of my DS18B20 that is connected to one NodeESP with ESPeasy.
It reads the Temperature and I can see it on the ESPeasy web interface.
It connects correctly to Mosquitto server but I can’t see the temperature value.
Here is my configuration:

Sensors.yaml:

  • platform: mqtt
    name: “ESP_easy”
    state_topic: “tele/quarto/SENSOR”
    qos: 0
    unit_of_measurement: “°C”
    value_template: “{{ value_json.DS1.Temperature }}”

ESPeasy Json LOG:

{“System”:{
“Build”:20000,
“Git Build”:“v2.0-20180206”,
“Unit”:0,
“Local time”:“1970-00-00 00:00:00”,
“Uptime”:1395,
“Free RAM”:20048
},
“Sensors”:[
{
“TaskName”:“DS1”,
“Temperature”: 19.00
},

What am I doing wrong?
Please can someone help me?

Thank you for your great work!!
Rick

Your JSON response contains an array. Try

value_template: “{{ value_json.Sensors[1].Temperature }}”