Need a bit of assistance with mqtt oh tasmota

Im trying to get my sonoff th16 with latest tasmota, incorporated in my hassio install.
I cant seem to get it working, so im in need of some help to tell me where/what im doing wrong/missing.
Im running latest Hass.io, i have installet Mosquitto mqtt client and have made a new user named mqtt.
I have then integrated mqtt via the settings > integrations menu and enabled autodiscovery.
I have then tried adding to sensors in my configuration.yaml file, which i showing fine, but they are not recieving any info fron the sonoff.
Any help is much appriciated, and preferably in newbie language :slight_smile:
My sensor looks like this:
sensor:

  • platform: mqtt
    name: “Tele Temperature”
    state_topic: “tele/sonoff_udv_temp/SENSOR”
    value_template: “{{ value_json[‘AM2301’].Temperature }}”
    unit_of_measurement: “\xB0C”
    availability_topic: “tele/sonoff_udv_temp/LWT”
    payload_available: “Online”
    payload_not_available: “Offline”
  • platform: mqtt
    name: “Tele Humidity”
    state_topic: “tele/sonoff_udv_temp/SENSOR”
    value_template: “{{ value_json[‘AM2301’].Humidity }}”
    unit_of_measurement: “%”
    availability_topic: “tele/sonoff_udv_temp/LWT”
    payload_available: “Online”
    payload_not_available: “Offline”

And my sonoff/tasmota/mqtt settings looks like this:

If more info is needed, please say so.

Per