1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-08 14:22:21 +01:00

fix: rename add_lamp method to add_lamp_ and update logging to use output pointer

This commit is contained in:
Oliver Kleinecke
2025-02-15 11:34:39 +01:00
parent ff8c45a529
commit 0ace2530ab

View File

@@ -30,7 +30,7 @@ void DynamicLamp::setup() {
}
// for testing only
uint8_t first_lamp;
first_lamp = this->add_lamp();
first_lamp = this->add_lamp_();
this->add_lamp_output_(first_lamp, this->available_outputs_[0]);
this->add_lamp_output_(first_lamp, this->available_outputs_[1]);
this->add_lamp_output_(first_lamp, this->available_outputs_[2]);
@@ -84,7 +84,7 @@ void DynamicLamp::dump_config() {
}
for (uint8_t i = 0; i < 16; i++) {
if (this->available_outputs_[i].active) {
ESP_LOGCONFIG(TAG, "Using output with id %s as output number %" PRIu8 "", this->available_outputs_[i].output_id.c_str(), i);
ESP_LOGCONFIG(TAG, "Using output with id %s as output number %" PRIu8 "", this->available_outputs_[i].output->id.c_str(), i);
}
}
}