I am using the Fibaro Home Center (3) as a hub for Home Assistant.
Sometimes the Home Center gets a firmware update, because i am never login to the Home Center i don’t see if there new firmware is available.
Is it possible to add a update sensor for the Home Center firmware updates, so Home Assistant show that there is a update available, and with one click starts the update on the Home Center?
In the API the information is available:
/api/settings/info
has a sensor updateStableAvailable
and newestStableVersion
to show the new version tag.
/api/service/update
has sensors for
UpdateStatus
UpdateProgress
and actions:
Download Stable
{
"action": "download",
"params": {
"type": "stable"
}
}
Install (make Local Backup)
{
"action": "install",
"params": {
"backupType": "local",
"masterOnly": true
}
}