2022.6: Gaining new insights!

Reminder: Please only discuss the beta release in the Discord beta channel.

For some reason this is occurring on the header of Home Assistant but I can not seem to find where the configures for that header comes from. I have tried to remove theme but did the same. Anyone have any ideas why the header would keep adding the word “My” to it over and over?

Not having luck with !include_dir_merge_named suggestion. Any thoughts?

mqtt: 
  sensor: !include_dir_merge_named mqtt/sensors/
  binary_sensor: !include_dir_merge_named mqtt/binary_sensors/

returns “nvalid config for [mqtt]: [Sensor] is an invalid option for [mqtt]. Check: mqtt->mqtt->sensor->0->Sensor. (See /config/configuration.yaml, line 120).”

Sensors are formated in yaml files as such:

sensor:
  - name: "SMLReaderManufacturer"
    state_topic: "homeassistant/sensor/smartmeter/sensor/1/obis/1-0:96.50.1/1/value"

or as follows for binary files

binary_sensor:
  - name: "SMLReaderManufacturer"
    state_topic: "homeassistant/sensor/smartmeter/sensor/1/obis/1-0:96.50.1/1/value"
mqtt: 
  sensor: !include_dir_merge_list mqtt/sensors/
  binary_sensor: !include_dir_merge_list mqtt/binary_sensors/

sensor files in mqtt/sensors/

- name: "SMLReaderManufacturer"
  state_topic: "homeassistant/sensor/smartmeter/sensor/1/obis/1-0:96.50.1/1/value"

binary sensor files mqtt/binary_sensors/

- name: "SMLReaderManufacturer"
  state_topic: "homeassistant/sensor/smartmeter/sensor/1/obis/1-0:96.50.1/1/value"
1 Like

Thanks Tom! Love this community.