From 014131233ea97cb6c05706ddce5d549689944749 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Tue, 7 Jul 2026 09:36:36 +1200 Subject: [PATCH] [online_image] Use rp2_arduino framework key after rp2040->rp2 rename dev renamed the rp2040 platform to rp2 (framework key rp2040_arduino -> rp2_arduino). Propagate that into the online_image file platform, whose framework-version guard was relocated here during the image platform refactor and so was not covered by the rename on dev. --- esphome/components/online_image/image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/online_image/image.py b/esphome/components/online_image/image.py index ad1a65ecd9..cb86f93e29 100644 --- a/esphome/components/online_image/image.py +++ b/esphome/components/online_image/image.py @@ -58,7 +58,7 @@ ONLINE_IMAGE_CONFIG_SCHEMA = cv.All( # esp8266_arduino=cv.Version(2, 7, 0), esp32_arduino=cv.Version(0, 0, 0), esp_idf=cv.Version(4, 0, 0), - rp2040_arduino=cv.Version(0, 0, 0), + rp2_arduino=cv.Version(0, 0, 0), host=cv.Version(0, 0, 0), ), runtime_image.validate_runtime_image_settings,