1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 08:41:59 +00:00

[sm16716] Combine log statements to reduce loop blocking (#12962)

This commit is contained in:
J. Nick Koston
2026-01-04 16:54:03 -10:00
committed by GitHub
parent c742db48b8
commit 9128fc3120

View File

@@ -14,11 +14,13 @@ void SM16716::setup() {
this->pwm_amounts_.resize(this->num_channels_, 0);
}
void SM16716::dump_config() {
ESP_LOGCONFIG(TAG, "SM16716:");
ESP_LOGCONFIG(TAG,
"SM16716:\n"
" Total number of channels: %u\n"
" Number of chips: %u",
this->num_channels_, this->num_chips_);
LOG_PIN(" Data Pin: ", this->data_pin_);
LOG_PIN(" Clock Pin: ", this->clock_pin_);
ESP_LOGCONFIG(TAG, " Total number of channels: %u", this->num_channels_);
ESP_LOGCONFIG(TAG, " Number of chips: %u", this->num_chips_);
}
void SM16716::loop() {
if (!this->update_)