Hi
Connected a Sonoff POW using Espurna firmware with home assistant and the result is:
Switch works, Energy sensons apear and works.
However Voltage, Current, Power (aparent,reactive and real) do not apear at all in HA.
At first i thought it was an issue of the espurna firmware but in that case the sensors would apear blank in HA. But in this case the sensors do not apear and only the energy sensor apears and works ok.
I did not check the mqtt comms because i think it is irrelevant with the sensors not showing in HA (not even as hidden in configuration)
This is my configuration.yaml
switch:
- name: ESPURNA_B49A9C
platform: mqtt
state_topic: ESPURNA_B49A9C/relay/0
command_topic: ESPURNA_B49A9C/relay/0/set
payload_on: 1
payload_off: 0
availability_topic: ESPURNA_B49A9C/status
payload_available: 1
payload_not_available: 0
sensor:
- name: ESPURNA_B49A9C current
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/current
unit_of_measurement: "A"
sensor:
- name: ESPURNA_B49A9C voltage
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/voltage
unit_of_measurement: "V"
sensor:
- name: ESPURNA_B49A9C power
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/power
unit_of_measurement: "W"
sensor:
- name: ESPURNA_B49A9C reactive
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/reactive
unit_of_measurement: "W"
sensor:
- name: ESPURNA_B49A9C apparent
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/apparent
unit_of_measurement: "W"
sensor:
- name: ESPURNA_B49A9C factor
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/factor
unit_of_measurement: "%"
sensor:
- name: ESPURNA_B49A9C energy
platform: mqtt
device_class: sensor
state_topic: ESPURNA_B49A9C/energy
unit_of_measurement: "kWh"
You can see that the switch is first and energy sensor last and work ok.
Anything in-between doesnât!
Any ideas?