Update docs

This commit is contained in:
Adrian Jagielak 2025-07-25 01:07:19 +02:00
parent 0f103dcb8e
commit bceccba572
No known key found for this signature in database
GPG Key ID: 0818CF7AF6C62BFB
4 changed files with 31 additions and 20 deletions

View File

@ -61,7 +61,7 @@ todo: links to the .ts service implementations below
| Service | Example device | Implementation status | | Service | Example device | Implementation status |
| --- | --- | --- | | --- | --- | --- |
| _alarms_ services | [Brannvarsler](https://www.futurehome.io/en_no/shop/brannvarsler-230v) | | | _alarms_ services | [Brannvarsler](https://www.futurehome.io/en_no/shop/brannvarsler-230v) | |
| barrier_ctrl | | | | barrier_ctrl | | |
| basic | | ✅ | | basic | | ✅ |
| battery | | ✅ | | battery | | ✅ |
| chargepoint | [Futurehome Charge](https://www.futurehome.io/en_no/shop/charge) | | | chargepoint | [Futurehome Charge](https://www.futurehome.io/en_no/shop/charge) | |
@ -121,11 +121,11 @@ todo: links to the .ts service implementations below
| siren_ctrl | | | | siren_ctrl | | |
| thermostat | [Thermostat](https://www.futurehome.io/en_no/shop/thermostat-w) | ✅ | | thermostat | [Thermostat](https://www.futurehome.io/en_no/shop/thermostat-w) | ✅ |
| user_code | | | | user_code | | |
| water_heater | | | | water_heater | | |
## Services that are deprecated, unused, or removed in newer versions of the system. ## Services that are deprecated, unused, or removed in newer versions of the system.
| Service | Implementation status | | Service | Description |
| --- | --- | | --- | --- |
| appliance | | | appliance | |
| blinds | | | blinds | |
@ -145,8 +145,12 @@ todo: links to the .ts service implementations below
| meter_gas | | | meter_gas | |
| meter_heating | | | meter_heating | |
| meter_water | | | meter_water | |
| schedule | Not recognized by the official app |
| schedule_entry | Not recognized by the official app |
| sensor | | | sensor | |
| siren | | | siren | |
| sound_switch | Not recognized by the official app |
| time_parameters | Not recognized by the official app |
| water_valve | | | water_valve | |
## Virtual, unnecessary services (easily reproduced in stock Home Assistant) ## Virtual, unnecessary services (easily reproduced in stock Home Assistant)
@ -157,15 +161,15 @@ todo: links to the .ts service implementations below
## System or meta, not essential services ## System or meta, not essential services
| Service | Implementation status | | Service | Implementation status | Description |
| --- | --- | | --- | --- | --- |
| gateway | | | gateway | | |
| association | | | association | | |
| diagnostic | | | diagnostic | | |
| indicator_ctrl | | | indicator_ctrl | ✅ | Identify devices |
| ota | | | ota | | |
| parameters | | | parameters | | |
| technology_specific | | | technology_specific | | |
| time | | | time | | |
| version | | | version | | |
| dev_sys | | | dev_sys | | |

View File

@ -1,6 +1,12 @@
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog --> <!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->
## 0.1.2 (24.07.2025)
- Added support for 'water_heater' service (devices such as water boiler or a water tank).
- Updated demo mode data.
- Added extracting device manufacturer name.
## 0.1.1 (24.07.2025) ## 0.1.1 (24.07.2025)
- Set 'battery' entity category to 'diagnostic' to hide it from the main HA view. - Set 'battery' entity category to 'diagnostic' to hide it from the main HA view.
@ -8,9 +14,6 @@
- Changed the default 'sensor_lumin' unit from 'Lux' to 'lx'. - Changed the default 'sensor_lumin' unit from 'Lux' to 'lx'.
- Added support for 'indicator_ctrl' service (identify devices). - Added support for 'indicator_ctrl' service (identify devices).
- Added support for 'barrier_ctrl' service (devices like garage doors, barriers, and window shades). - Added support for 'barrier_ctrl' service (devices like garage doors, barriers, and window shades).
- Added support for 'water_heater' service (devices such as water boiler or a water tank).
- Updated demo mode data.
- Added extracting device manufacturer name.
# 0.1.0 (24.07.2025) # 0.1.0 (24.07.2025)

View File

@ -124,7 +124,7 @@ todo: links to the .ts service implementations below
## Services that are deprecated, unused, or removed in newer versions of the system. ## Services that are deprecated, unused, or removed in newer versions of the system.
| Service | Implementation status | | Service | Description |
| --- | --- | | --- | --- |
| appliance | | | appliance | |
| blinds | | | blinds | |
@ -144,8 +144,12 @@ todo: links to the .ts service implementations below
| meter_gas | | | meter_gas | |
| meter_heating | | | meter_heating | |
| meter_water | | | meter_water | |
| schedule | Not recognized by the official app |
| schedule_entry | Not recognized by the official app |
| sensor | | | sensor | |
| siren | | | siren | |
| sound_switch | Not recognized by the official app |
| time_parameters | Not recognized by the official app |
| water_valve | | | water_valve | |
## Virtual, unnecessary services (easily reproduced in stock Home Assistant) ## Virtual, unnecessary services (easily reproduced in stock Home Assistant)

View File

@ -1,6 +1,6 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config # https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config
name: Futurehome name: Futurehome
version: "0.1.1" version: "0.1.2"
slug: futurehome slug: futurehome
description: Local Futurehome Smarthub integration description: Local Futurehome Smarthub integration
url: "https://github.com/adrianjagielak/home-assistant-futurehome" url: "https://github.com/adrianjagielak/home-assistant-futurehome"