Skip to content

Commit

Permalink
Release 1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Luligu committed Jul 15, 2024
1 parent b314563 commit 6becf93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export class SomfyTahomaPlatform extends MatterbridgeDynamicPlatform {
this.log.info('TaHoma', devices.length, 'devices discovered');

for (const device of devices) {
this.log.debug(`Device: ${device.label} uniqueName ${device.uniqueName} uiClass ${device.definition.uiClass} serial ${device.serialNumber}`);
this.log.debug(`Device: ${device.label} uniqueName ${device.uniqueName} uiClass ${device.definition.uiClass} deviceURL ${device.deviceURL} serial ${device.serialNumber}`);
const supportedUniqueNames = ['Blind', 'ExteriorBlindRTSComponent'];
if (supportedUniqueNames.includes(device.uniqueName)) {
this.tahomaDevices.push(device);
Expand All @@ -150,6 +150,7 @@ export class SomfyTahomaPlatform extends MatterbridgeDynamicPlatform {
this.log.debug(`- uniqueName ${device.uniqueName}`);
this.log.debug(`- uiClass ${device.definition.uiClass}`);
this.log.debug(`- serial ${device.serialNumber}`);
this.log.debug(`- deviceURL ${device.deviceURL}`);
this.log.debug(`- commands ${debugStringify(device.commands)}`);
this.log.debug(`- states ${debugStringify(device.states)}`);
this.log.debug(`- duration ${duration}`);
Expand Down

0 comments on commit 6becf93

Please sign in to comment.