An input in order to supply electricity prices to the Energy Dashboard in Home Assistant, for myself I named these after my electricity provider, AGL.

YAML

electricitycost.yaml
input_number:
  agl_import_price:
    name: AGL Import Price
    min: 0
    max: 10
    step: 0.00001
    mode: box
    unit_of_measurement: 'AUD/kWh'
    initial: 0.34859

  agl_export_price:
    name: AGL Export Price
    min: 0
    max: 10
    step: 0.00001
    mode: box
    unit_of_measurement: 'AUD/kWh'
    initial: 0.08


  • No labels