Where is config information for Utility Meter stored

I started to use Utility Meter - I set up some meters using the Create Helper UI. I find I have set one up wrong (it complains about non-numeric input). How do I edit it? I have searched all the files in the config folder, but can’t find any reference to the “sensor.import_today” utility meter I set up.

Also, where do I find documentation on the configuration files? I have added a load of stuff to my configuration.yaml file, but I think it would be better in an include file. But I don;t know what the proper syntax is.

My configuration.yaml is


# Loads default set of integrations. Do not remove.
default_config:

# Text to speech
tts:
  - platform: google_translate

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
sensor: !include sensors.yaml

modbus:
  - name: Nibe
    type: tcp
    host: 192.168.1.251
    port: 502
    sensors:
      - name: nibe_smos40_bt1
        unit_of_measurement: °C
        data_type: int16
        device_class: temperature
        address: 1
        input_type: input
        scale: 0.1
        precision: 1
        state_class: measurement
        slave: 1

(there is more).

How do I put the modbus bit in an include file - what syntax do I use?

The config is off in the .storage folder, you’ll need to search there, be careful if you edit as it’s not designed for hand editing though I do it every now now and then. Perhaps backup the file first.

To modularize my config, i created a packages folder. And in there have a file per topic - like modbus_package.yaml

In the main configuration.yaml do this

homeassistant:
  packages: !include_dir_named packages
1 Like