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!