From b537d3921e742a37fc14f573d081bc95b7c8b191 Mon Sep 17 00:00:00 2001 From: reaw Date: Fri, 16 Feb 2024 12:20:38 +0700 Subject: [PATCH] corrected the AC mode oerder --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 595a6dd..99abf51 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,7 +7,7 @@ RemoteVariable weather = RemoteVariable(); RemoteVariable pm_switch = RemoteVariable(); RemoteVariable pm_fan_speed = RemoteVariable(); -const char *mode_names[] = {"off", "fan_only", "cool"}; +const char *mode_names[] = {"off", "cool", "fan_only"}; const char *fan_speed_names[] = {"auto", "high", "medium", "low"}; uint8_t row = 4; uint8_t column = 2;