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

Tweak Color init because IDF 5+ (#5221)

This commit is contained in:
Keith Burzinski
2023-08-10 00:11:57 -05:00
committed by GitHub
parent b56c606523
commit 8e7e8da4a3

View File

@@ -82,5 +82,5 @@ async def to_code(config):
cg.new_variable(
config[CONF_ID],
cg.StructInitializer(ColorStruct, ("r", r), ("g", g), ("b", b), ("w", w)),
cg.ArrayInitializer(r, g, b, w),
)