mirror of
https://github.com/esphome/esphome.git
synced 2025-02-22 04:48:21 +00:00
23 lines
427 B
C++
23 lines
427 B
C++
#include "climate_mode.h"
|
|
|
|
namespace esphome {
|
|
namespace climate {
|
|
|
|
const char *climate_mode_to_string(ClimateMode mode) {
|
|
switch (mode) {
|
|
case CLIMATE_MODE_OFF:
|
|
return "OFF";
|
|
case CLIMATE_MODE_AUTO:
|
|
return "AUTO";
|
|
case CLIMATE_MODE_COOL:
|
|
return "COOL";
|
|
case CLIMATE_MODE_HEAT:
|
|
return "HEAT";
|
|
default:
|
|
return "UNKNOWN";
|
|
}
|
|
}
|
|
|
|
} // namespace climate
|
|
} // namespace esphome
|