Add support for SM2235 and SM2335 LED drivers (#3924)

This commit is contained in:
Cossid
2022-12-22 16:04:21 -06:00
committed by GitHub
parent a18ab748fd
commit 53b60ac817
13 changed files with 456 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#include "sm2335.h"
#include "esphome/core/log.h"
namespace esphome {
namespace sm2335 {
static const char *const TAG = "sm2335";
void SM2335::setup() {
ESP_LOGCONFIG(TAG, "Setting up sm2335 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 SM2335::dump_config() {
ESP_LOGCONFIG(TAG, "sm2335:");
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 sm2335
} // namespace esphome