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

display: rename DisplayBufferRef to DisplayRef (#5002)

This commit is contained in:
Kamil Trzciński
2023-07-11 06:38:28 +09:00
committed by GitHub
parent ddde1ee31e
commit 98fd092053
15 changed files with 16 additions and 24 deletions

View File

@@ -121,7 +121,7 @@ async def to_code(config):
if CONF_LAMBDA in config:
lambda_ = await cg.process_lambda(
config[CONF_LAMBDA], [(display.DisplayBufferRef, "it")], return_type=cg.void
config[CONF_LAMBDA], [(display.DisplayRef, "it")], return_type=cg.void
)
cg.add(var.set_writer(lambda_))