You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
namespace esphome {
|
|
namespace xiaomi {
|
|
namespace bslamp2 {
|
|
|
|
static const std::string LIGHT_MODE_UNKNOWN { "unknown" };
|
|
static const std::string LIGHT_MODE_OFF { "off" };
|
|
static const std::string LIGHT_MODE_RGB { "rgb" };
|
|
static const std::string LIGHT_MODE_WHITE { "white" };
|
|
static const std::string LIGHT_MODE_NIGHT { "night" };
|
|
|
|
} // namespace bslamp2
|
|
} // namespace xiaomi
|
|
} // namespace esphome
|