Hi,
I’m very new to Home Assistant.
I have an air exchanger unit from Nilan which provide Modbus interface, so I implemented a Modbus_MQTT client that reads different registers from the unit and send them to MQTT broker running on my Home Assistant with different topics. Then I added mqtt sensors to read these values and all is working fine.
I want to create a device that gather all these mqtt sensors in one and shown them on my Home Assistant UI Overview page under the correct room, instead of having them placed under sensors.
In addition, if possible, I would like to gather them together under one device instead of having them as separate readouts.
E.g. of the definition in my configuration.yaml
sensor:
- platform: mqtt
name: "Nilan Controller board temperature"
state_topic: "nilan/temperature/T0_Controller/"
- platform: mqtt
name: "Nilan Room exhaust temperature"
state_topic: "nilan/temperature/T3_Exhaust/"
...
Any help is much appreciated, please remember that I’m new so bare with me.
Thanks