mirror of
https://github.com/esphome/esphome.git
synced 2024-12-01 13:13:54 +01:00
28 lines
775 B
C++
28 lines
775 B
C++
#include "sm2235.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace sm2235 {
|
|
|
|
static const char *const TAG = "sm2235";
|
|
|
|
void SM2235::setup() {
|
|
ESP_LOGCONFIG(TAG, "Setting up sm2235 Output Component...");
|
|
this->data_pin_->setup();
|
|
this->data_pin_->digital_write(true);
|
|
this->clock_pin_->setup();
|
|
this->clock_pin_->digital_write(true);
|
|
this->pwm_amounts_.resize(5, 0);
|
|
}
|
|
|
|
void SM2235::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "sm2235:");
|
|
LOG_PIN(" Data Pin: ", this->data_pin_);
|
|
LOG_PIN(" Clock Pin: ", this->clock_pin_);
|
|
ESP_LOGCONFIG(TAG, " Color Channels Max Power: %u", this->max_power_color_channels_);
|
|
ESP_LOGCONFIG(TAG, " White Channels Max Power: %u", this->max_power_white_channels_);
|
|
}
|
|
|
|
} // namespace sm2235
|
|
} // namespace esphome
|