Add logging the initial devices response

This commit is contained in:
Adrian Jagielak 2025-09-16 12:44:38 +02:00
parent 2be8bf34bf
commit 0bb82f6d95
No known key found for this signature in database
GPG Key ID: 0818CF7AF6C62BFB
3 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,9 @@
<!-- 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)
- Updated README.md.

View File

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

View File

@ -79,6 +79,9 @@ import { pollVinculum } from './fimp/vinculum';
const hubId = house.val.param.house.hubId;
const devices = await pollVinculum('device');
log.debug(
`FIMP devices:\n${JSON.stringify(devices, null, 0)}`,
);
const haConfig = retainedMessages.filter((msg) =>
msg.topic.endsWith('/config'),