mirror of
https://github.com/esphome/esphome.git
synced 2026-08-18 03:39:57 +08:00
26 lines
674 B
YAML
26 lines
674 B
YAML
# Legacy top-level `image:` defaults/images form (deprecated; migrates to
|
|
# `platform: file`). Config-only test exercising the deprecation/migration path,
|
|
# including the per-type byte_order drop when an entry overrides to a non-endian
|
|
# type (binary).
|
|
display:
|
|
- platform: sdl
|
|
id: image_display
|
|
auto_clear_enabled: false
|
|
dimensions:
|
|
width: 480
|
|
height: 480
|
|
|
|
image:
|
|
defaults:
|
|
type: rgb565
|
|
transparency: opaque
|
|
byte_order: little_endian
|
|
resize: 50x50
|
|
dither: FloydSteinberg
|
|
images:
|
|
- id: legacy_defaults_image
|
|
file: ../../pnglogo.png
|
|
- id: legacy_defaults_binary
|
|
file: ../../pnglogo.png
|
|
type: binary
|