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:
@@ -28,7 +28,7 @@ struct LinkedOutput {
|
||||
|
||||
struct CombinedLamp {
|
||||
bool active = false;
|
||||
bool[16] used_outputs;
|
||||
bool used_outputs[16];
|
||||
};
|
||||
|
||||
class DynamicLamp : public Component {
|
||||
|
Reference in New Issue
Block a user