Fix setting FAN_ONLY Mode

This commit is contained in:
Oliver
2023-02-26 17:54:56 +01:00
parent 4cfd7a5c3c
commit 683eaca479
2 changed files with 4 additions and 4 deletions

View File

@@ -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':