I am in the progress of learning HA and migrating my existing MQTT stuff. I have a bunch of sensors from Tinkerforge nicely publishing messages using their MQTT API.
So far, I found two different ways of integrating my stuff into HA.
Device information is stored in .storage file, I don’t recommend changing it unless you know JSON and HA’s workflow. If you update the device information, try clearing your cache and refreshing the page and your device will update it’s default names. If you renamed things in the UI already, then it won’t change because you overrode those values and your override values will remain.
It’s new. It’s basically the UI version of adding MQTT entities to HA. The code owner calls them “sub entities” in the documentation IIRC. This months beta adds a bunch more to the UI.
It would seem like the current implementation is in the same spirit as Template Sensor helper. It allows the user to specify some but not all of the available features (i.e. I don’t see the manufacturer option).
Lines in /homeassistant/.storage/core.device_registry for Method 1, containing something like "manufacturer":"Tinkerforge","model":null,
A LONG Line in /homeassistant/.storage/core.config_entries for Method 2.
Simple JSON containing something like "hw_version":"1.0","model":"Temperature Bricklet"
Perhaps I add the manufacturer. Perhaps I wait until this gets rectified.
I have edited several of the files in the .storage directory. It’s generally not recommended because a single mistake can prevent Home Assistant from starting. However, if you’re willing to take the risk, be sure to make a copy of any file you intend to modify and ensure Home Assistant is shutdown while you are editing the file(s). It helps if you use a text editor that understands JSON (to minimize JSON syntax errors).