I have HomeAssistant and I need to store device details on my computer. The following options are missing from the device settings:
Device description: Editing field to add a device description,
Invoice: Possibility to attach a purchase invoice for the device,
Warranty: Functionality that allows you to specify the warranty period (calendar fields From and To) and the possibility of attaching a warranty file,
User manual - Option to attach a file with the user manual to the product,
Service: Possibility to define the next date for technical inspection of the device (e.g. for gas boilers, air conditioning, car and others).
There is definitely no possibility to define the above details in the settings of individual devices. Adding these options will allow you to set reminders in the system about the upcoming service of the device or the end of the warranty. In addition, it will organize information about devices, they will be stored in the right place. In the brain for home, in HomeAssistant.
I have recently installed the Grocy add on, which covers pretty much all of this, and a bit more- I think itâs useful, but beyond the scope of Home Assistant itself.
Technically you can do some of this, itâs just not very friendly.
customize:
sensor.my_sensor:
device_description: "This is my sensor"
invoice: "Maybe not this one as it's an image - you could only reference a url"
warranty: "My warranty stuff"
user_manual: "Yeah you can't attach a file either, just reference one"
service: "2028-01-01"
Then in Developer Tools under YAML you reload Location & Customizations to load updated values. However you have to wait for a state change to actually see the change. But I donât think this works if itâs a template sensor and the sensor it reacts to changes state.