Tasmota Sonoff Pow R2 - no power info

Hello everyone,

I have flashed two Sonoff Pow R2 with the Tasmota 8.1.0 software.
They are now connected to the electrical devices and I receive information from them in TasmotAdmin.
I was able to add manually the switch and it works well both ways.

My problem is in receiving power monitoring data. For information, yhis data was well received on the Sonoff official app before flashing Tasmota.

I tried to put this into my configuration.yaml file but the result is Unknown.

  - platform: mqtt
    name: "Main Radiator Power"
    state_topic: "tele/mainradiator/SENSOR"
    value_template: "{{ value_json['ENERGY'].Power }}"
    unit_of_measurement: "W"
    availability_topic: "tele/mainradiator/LWT"
    qos: 1
    payload_available: "Online"
    payload_not_available: "Offline"
    device_class: power

I checked into the Tasmota commands and started to play with it. But I can’t see any power monitoring information going out of my sensor. Here is the results from listening to the topic tele/mainradiator/STATE:

{
    "Time": "2020-03-28T17:58:15",
    "Uptime": "0T00:03:54",
    "UptimeSec": 234,
    "Heap": 27,
    "SleepMode": "Dynamic",
    "Sleep": 50,
    "LoadAvg": 19,
    "MqttCount": 2,
    "POWER": "OFF",
    "Wifi": {
        "AP": 1,
        "SSId": "removed for privacy reasons",
        "BSSId": "removed for privacy reasons",
        "Channel": 13,
        "RSSI": 80,
        "Signal": -60,
        "LinkCount": 1,
        "Downtime": "0T00:00:09"
    }
}

When I listen to tele/mainradiator/sensor, nothing comes out… Any idea on how to solve this?
Thanks to all of the contributors!

My POW R2 works fine. I just entered setoption19 1 in the tasmota console.

Hi @francisp,
Thanks for your answer. What does it look like in your MQTT integration please?

Do you have a sensor.your_tasmota_name_status? If so, what does it look like in the States page?
Mine is as follow and I am surprised to see the module line as it is here:

Is this what your looking for ?

Your module is listed as a sonoff basic. You need to configure your module in tasmota as a sonoff pow.

Is there a way to do that if I am not connected to the local network?

If you can’t reach 192.168.0.19, I don’t think.

I was able to change the template byusing the Module TasmotAdmin command! It works now! Thanks for your help!!