1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-16 07:40:29 +01:00

fix: change loop variable type to uint8_t for consistency in dump_config

This commit is contained in:
Oliver Kleinecke 2025-02-19 17:37:53 +01:00
parent b213650f35
commit 82007c2ec0

View File

@ -105,7 +105,7 @@ void DynamicLampComponent::dump_config() {
//this->add_output_to_lamp("First Lamp", &this->available_outputs_[2]);
//this->add_output_to_lamp("First Lamp", &this->available_outputs_[3]);
std::string lamp_names_str;
for (i = 0; i < 64; i++) {
for (uint8_t i = 0; i < 64; i++) {
if (this->timers_[i].in_use == true) {
lamp_names_str = "";
for (uint8_t j = 0; j < 16; j++) {