mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-10-04 10:47:10 +00:00
Add logging the initial devices response
This commit is contained in:
parent
2be8bf34bf
commit
0bb82f6d95
@ -1,5 +1,9 @@
|
|||||||
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->
|
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->
|
||||||
|
|
||||||
|
## 1.0.2 (16.09.2025)
|
||||||
|
|
||||||
|
- Added logging the initial devices response.
|
||||||
|
|
||||||
## 1.0.1 (28.07.2025)
|
## 1.0.1 (28.07.2025)
|
||||||
|
|
||||||
- Updated README.md.
|
- Updated README.md.
|
||||||
|
@ -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: '1.0.1'
|
version: '1.0.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'
|
||||||
|
@ -79,6 +79,9 @@ import { pollVinculum } from './fimp/vinculum';
|
|||||||
const hubId = house.val.param.house.hubId;
|
const hubId = house.val.param.house.hubId;
|
||||||
|
|
||||||
const devices = await pollVinculum('device');
|
const devices = await pollVinculum('device');
|
||||||
|
log.debug(
|
||||||
|
`FIMP devices:\n${JSON.stringify(devices, null, 0)}`,
|
||||||
|
);
|
||||||
|
|
||||||
const haConfig = retainedMessages.filter((msg) =>
|
const haConfig = retainedMessages.filter((msg) =>
|
||||||
msg.topic.endsWith('/config'),
|
msg.topic.endsWith('/config'),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user