Merge branch 'nvds-new-espnow' of https://github.com/nielsnl68/esphome into nvds-new-espnow

This commit is contained in:
NP v/d Spek 2024-10-06 02:51:09 +02:00
commit 2725b33835
2 changed files with 6 additions and 2 deletions

View file

@ -12,7 +12,7 @@ from .defines import (
)
from .helpers import add_lv_use
from .lvcode import LambdaContext, LocalVariable, lv, lv_assign, lv_variable
from .schemas import ALL_STYLES
from .schemas import ALL_STYLES, STYLE_REMAP
from .types import lv_lambda_t, lv_obj_t, lv_obj_t_ptr
from .widgets import Widget, add_widgets, set_obj_properties, theme_widget_map
from .widgets.obj import obj_spec
@ -31,7 +31,8 @@ async def styles_to_code(config):
value = await validator.process(value)
if isinstance(value, list):
value = "|".join(value)
lv.call(f"style_set_{prop}", svar, literal(value))
remapped_prop = STYLE_REMAP.get(prop, prop)
lv.call(f"style_set_{remapped_prop}", svar, literal(value))
async def theme_to_code(config):

View file

@ -67,6 +67,9 @@ lvgl:
border_width: 2
pad_all: 4
align: center
- id: image_recolor
image_recolor: 0x10ca1e
image_recolor_opa: cover
touchscreens:
- touchscreen_id: tft_touch