1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-06 13:22:19 +01:00

fix missing break in switch case of dump_config()

This commit is contained in:
Oliver Kleinecke
2025-02-14 12:35:26 +01:00
parent b382e77d3c
commit 8a2e6751e5

View File

@@ -29,6 +29,7 @@ void DynamicLamp::dump_config(){
switch(this->save_mode_) {
case SAVE_MODE_NONE:
ESP_LOGCONFIG(TAG, "Save mode set to NONE");
break;
case SAVE_MODE_FRAM:
ESP_LOGCONFIG(TAG, "Save mode set to FRAM");
break;