esphome/tests/components/ili9xxx/test.rp2040.yaml
Keith Burzinski 18149bc276
Add some components to the new testing framework (I) (#6185)
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
2024-04-23 21:36:30 +12:00

35 lines
678 B
YAML

spi:
- id: spi_main_lcd
clk_pin: 2
mosi_pin: 3
miso_pin: 4
display:
- platform: ili9xxx
invert_colors: true
dimensions: 320x240
transform:
swap_xy: true
mirror_x: true
mirror_y: false
model: TFT 2.4
color_palette: GRAYSCALE
cs_pin: 5
dc_pin: 15
reset_pin: 16
lambda: |-
it.rectangle(0, 0, it.get_width(), it.get_height());
- platform: ili9xxx
dimensions:
width: 320
height: 240
offset_width: 20
offset_height: 10
model: TFT 2.4
cs_pin: 20
dc_pin: 21
reset_pin: 22
auto_clear_enabled: false
rotation: 90
lambda: |-
it.fill(Color::WHITE);