From 0bb82f6d9503056c5babd8a0cf8f5c64fccddada Mon Sep 17 00:00:00 2001 From: Adrian Jagielak Date: Tue, 16 Sep 2025 12:44:38 +0200 Subject: [PATCH] Add logging the initial devices response --- futurehome/CHANGELOG.md | 4 ++++ futurehome/config.yaml | 2 +- futurehome/src/index.ts | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/futurehome/CHANGELOG.md b/futurehome/CHANGELOG.md index dbda2b1..65eb2fe 100644 --- a/futurehome/CHANGELOG.md +++ b/futurehome/CHANGELOG.md @@ -1,5 +1,9 @@ +## 1.0.2 (16.09.2025) + +- Added logging the initial devices response. + ## 1.0.1 (28.07.2025) - Updated README.md. diff --git a/futurehome/config.yaml b/futurehome/config.yaml index e83348b..dd1827a 100644 --- a/futurehome/config.yaml +++ b/futurehome/config.yaml @@ -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' diff --git a/futurehome/src/index.ts b/futurehome/src/index.ts index e65bad0..93acadf 100644 --- a/futurehome/src/index.ts +++ b/futurehome/src/index.ts @@ -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'),