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

fix: correct array declaration for used_outputs in CombinedLamp struct

This commit is contained in:
Oliver Kleinecke
2025-02-14 15:41:10 +01:00
parent 8de13bda8f
commit 43b4fedb78

View File

@@ -28,7 +28,7 @@ struct LinkedOutput {
struct CombinedLamp {
bool active = false;
bool[16] used_outputs;
bool used_outputs[16];
};
class DynamicLamp : public Component {