forked from arendst/Tasmota
-
Notifications
You must be signed in to change notification settings - Fork 35
Sonoff POW, S31, Teckin Plugs (Power Monitoring)
digiblur edited this page Nov 8, 2019
·
1 revision
Copy the below example into configuration.yaml under the sensor section. You can only have one sensor section in the configuration. You can remove any sensors below you don't need in Home Assistant.
sensor:
- platform: mqtt
name: "Washer Watts"
state_topic: "tele/SNF-Washer/SENSOR"
value_template: "{{value_json['ENERGY'].Power }}"
qos: 2
unit_of_measurement : "W"
icon: mdi:flash-circle
availability_topic: "tele/SNF-Washer/LWT"
payload_available: "Online"
payload_not_available: "Offline"
- platform: mqtt
name: "Washer Voltage"
state_topic: "tele/SNF-Washer/SENSOR"
value_template: "{{value_json['ENERGY'].Voltage }}"
qos: 2
unit_of_measurement : "V"
icon: mdi:flash-circle
availability_topic: "tele/SNF-Washer/LWT"
payload_available: "Online"
payload_not_available: "Offline"
- platform: mqtt
name: "Washer Amps"
state_topic: "tele/SNF-Washer/SENSOR"
value_template: "{{value_json['ENERGY'].Current }}"
qos: 2
unit_of_measurement : "A"
icon: mdi:flash-circle
availability_topic: "tele/SNF-Washer/LWT"
payload_available: "Online"
payload_not_available: "Offline"
- platform: mqtt
name: "Washer Energy Today"
state_topic: "tele/SNF-Washer/SENSOR"
value_template: "{{value_json['ENERGY'].Today }}"
qos: 2
unit_of_measurement : "kWh"
availability_topic: "tele/SNF-Washer/LWT"
payload_available: "Online"
payload_not_available: "Offline"
- platform: mqtt
name: "Washer Energy Yesterday"
state_topic: "tele/SNF-Washer/SENSOR"
value_template: "{{value_json['ENERGY'].Yesterday }}"
qos: 2
unit_of_measurement : "kWh"
availability_topic: "tele/SNF-Washer/LWT"
payload_available: "Online"
payload_not_available: "Offline"```
If you want to control the relay(s) of the device consult the configuration examples for relays.