mirror of
https://github.com/esphome/esphome.git
synced 2025-09-07 05:42:20 +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 {
|
struct CombinedLamp {
|
||||||
bool active = false;
|
bool active = false;
|
||||||
bool[16] used_outputs;
|
bool used_outputs[16];
|
||||||
};
|
};
|
||||||
|
|
||||||
class DynamicLamp : public Component {
|
class DynamicLamp : public Component {
|
||||||
|
Reference in New Issue
Block a user