From 683eaca479e6a3f89e32db1ed573f3fb035c769c Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 26 Feb 2023 17:54:56 +0100 Subject: [PATCH] Fix setting FAN_ONLY Mode --- ioBroker/NsPanelTs.ts | 4 ++-- ioBroker/NsPanelTs_without_Examples.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ioBroker/NsPanelTs.ts b/ioBroker/NsPanelTs.ts index 3938ea20..1cf04444 100644 --- a/ioBroker/NsPanelTs.ts +++ b/ioBroker/NsPanelTs.ts @@ -3807,9 +3807,9 @@ function GenerateThermoPage(page: PageThermo): Payload[] { break; case 'FAN_ONLY': if(stateKeyNumber == Mode) { - bt[iconIndex] = Icons.GetIcon('fan') + '~11487~1~' + 'FAN' + '~'; + bt[iconIndex] = Icons.GetIcon('fan') + '~11487~1~' + 'FAN_ONLY' + '~'; } else { - bt[iconIndex] = Icons.GetIcon('fan') + '~35921~0~' + 'FAN' + '~'; + bt[iconIndex] = Icons.GetIcon('fan') + '~35921~0~' + 'FAN_ONLY' + '~'; } break; case 'DRY': diff --git a/ioBroker/NsPanelTs_without_Examples.ts b/ioBroker/NsPanelTs_without_Examples.ts index 4c797bd8..d2cc26b5 100644 --- a/ioBroker/NsPanelTs_without_Examples.ts +++ b/ioBroker/NsPanelTs_without_Examples.ts @@ -3424,9 +3424,9 @@ function GenerateThermoPage(page: PageThermo): Payload[] { break; case 'FAN_ONLY': if(stateKeyNumber == Mode) { - bt[iconIndex] = Icons.GetIcon('fan') + '~11487~1~' + 'FAN' + '~'; + bt[iconIndex] = Icons.GetIcon('fan') + '~11487~1~' + 'FAN_ONLY' + '~'; } else { - bt[iconIndex] = Icons.GetIcon('fan') + '~35921~0~' + 'FAN' + '~'; + bt[iconIndex] = Icons.GetIcon('fan') + '~35921~0~' + 'FAN_ONLY' + '~'; } break; case 'DRY':