mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
8b7e061f3a
Some checks are pending
CI / Create common environment (push) Waiting to run
CI / Check black (push) Blocked by required conditions
CI / Check flake8 (push) Blocked by required conditions
CI / Check pylint (push) Blocked by required conditions
CI / Check pyupgrade (push) Blocked by required conditions
CI / Run script/ci-custom (push) Blocked by required conditions
CI / Run pytest (push) Blocked by required conditions
CI / Check clang-format (push) Blocked by required conditions
CI / Run script/clang-tidy for ESP32 Arduino 1/4 (push) Blocked by required conditions
CI / Run script/clang-tidy for ESP32 Arduino 2/4 (push) Blocked by required conditions
CI / Run script/clang-tidy for ESP32 Arduino 3/4 (push) Blocked by required conditions
CI / Run script/clang-tidy for ESP32 Arduino 4/4 (push) Blocked by required conditions
CI / Run script/clang-tidy for ESP32 IDF (push) Blocked by required conditions
CI / Run script/clang-tidy for ESP8266 (push) Blocked by required conditions
CI / Component test (push) Blocked by required conditions
CI / Split components for testing into 20 groups maximum (push) Blocked by required conditions
CI / Test split components (push) Blocked by required conditions
CI / CI Status (push) Blocked by required conditions
YAML lint / yamllint (push) Waiting to run
CI / list-components (push) Blocked by required conditions
35 lines
667 B
YAML
35 lines
667 B
YAML
spi:
|
|
- id: spi_xpt2046
|
|
clk_pin: 6
|
|
mosi_pin: 7
|
|
miso_pin: 5
|
|
|
|
display:
|
|
- platform: ili9xxx
|
|
id: xpt_display
|
|
dimensions: 320x240
|
|
model: TFT 2.4
|
|
cs_pin: 8
|
|
dc_pin: 9
|
|
reset_pin: 10
|
|
invert_colors: false
|
|
lambda: |-
|
|
it.rectangle(0, 0, it.get_width(), it.get_height());
|
|
|
|
touchscreen:
|
|
- platform: xpt2046
|
|
id: xpt_touchscreen
|
|
cs_pin: 4
|
|
interrupt_pin: 3
|
|
display: xpt_display
|
|
update_interval: 50ms
|
|
threshold: 400
|
|
calibration:
|
|
x_min: 50
|
|
x_max: 280
|
|
y_min: 340
|
|
y_max: 3860
|
|
on_touch:
|
|
- logger.log:
|
|
format: Touch at (%d, %d)
|
|
args: [touch.x, touch.y]
|