mirror of
https://github.com/esphome/esphome.git
synced 2026-08-31 10:06:03 +00:00
15 lines
395 B
C++
15 lines
395 B
C++
#include "select_traits.h"
|
|
|
|
namespace esphome::select {
|
|
|
|
void SelectTraits::set_options(const std::initializer_list<const char *> &options) { this->options_ = options; }
|
|
|
|
void SelectTraits::set_options(const FixedVector<const char *> &options) {
|
|
this->options_.init(options.size());
|
|
for (const auto &opt : options) {
|
|
this->options_.push_back(opt);
|
|
}
|
|
}
|
|
|
|
} // namespace esphome::select
|