mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
enable rp2040 for online_image (#7769)
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 / list-components (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
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 / list-components (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
This commit is contained in:
parent
846b091aac
commit
5e27a8df1f
3 changed files with 24 additions and 0 deletions
|
@ -98,6 +98,7 @@ CONFIG_SCHEMA = cv.Schema(
|
||||||
# esp8266_arduino=cv.Version(2, 7, 0),
|
# esp8266_arduino=cv.Version(2, 7, 0),
|
||||||
esp32_arduino=cv.Version(0, 0, 0),
|
esp32_arduino=cv.Version(0, 0, 0),
|
||||||
esp_idf=cv.Version(4, 0, 0),
|
esp_idf=cv.Version(4, 0, 0),
|
||||||
|
rp2040_arduino=cv.Version(0, 0, 0),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
19
tests/components/online_image/common-rp2040.yaml
Normal file
19
tests/components/online_image/common-rp2040.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<<: !include common.yaml
|
||||||
|
|
||||||
|
spi:
|
||||||
|
- id: spi_main_lcd
|
||||||
|
clk_pin: 18
|
||||||
|
mosi_pin: 19
|
||||||
|
miso_pin: 16
|
||||||
|
|
||||||
|
display:
|
||||||
|
- platform: ili9xxx
|
||||||
|
id: main_lcd
|
||||||
|
model: ili9342
|
||||||
|
cs_pin: 20
|
||||||
|
dc_pin: 17
|
||||||
|
reset_pin: 21
|
||||||
|
invert_colors: true
|
||||||
|
lambda: |-
|
||||||
|
it.fill(Color(0, 0, 0));
|
||||||
|
it.image(0, 0, id(online_rgba_image));
|
4
tests/components/online_image/test.rp2040-ard.yaml
Normal file
4
tests/components/online_image/test.rp2040-ard.yaml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<<: !include common-rp2040.yaml
|
||||||
|
|
||||||
|
http_request:
|
||||||
|
verify_ssl: false
|
Loading…
Reference in a new issue