#ESPHome meter config??

1 messages · Page 1 of 1 (latest)

carmine oasis
#

Hi, I'm building a module for my meter with an ESP01. I use the pulse out on the meter into the ESP, but I'm wondering if someone can tell me the correct multiply values for an 1000pulse/kwh meter.

  - platform: pulse_meter
    name: 'Energie'
    id: sensor_pulse_meter
    unit_of_measurement: 'W'
    device_class: power
    state_class: measurement
    accuracy_decimals: 0
    pin: GPIO2
    filters:
      - multiply: 0.06 
      - throttle_average: 1s
    total:
      name: "Energie Total"
      unit_of_measurement: "kWh"
      device_class: energy
      state_class: total_increasing
      accuracy_decimals: 3
      filters:
        - multiply: 0.001
        - throttle_average: 1s```
#

This is my code

ember cedar
#

the multiply for power should be 1000 * 60/1000 = 60

#

I dont think you should set the throttle

carmine oasis
#

what is the multiply for total energy?