1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 04:12:23 +01:00

Fix old-style arduino_version on ESP8266 and with magic values (#2591)

This commit is contained in:
Oxan van Leeuwen
2021-10-21 19:56:47 +02:00
committed by GitHub
parent c0fc5b48ae
commit 27d7d7ca69
2 changed files with 11 additions and 3 deletions

View File

@@ -4,7 +4,10 @@ __version__ = "2021.11.0-dev"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
TARGET_PLATFORMS = ["esp32", "esp8266"]
PLATFORM_ESP32 = "esp32"
PLATFORM_ESP8266 = "esp8266"
TARGET_PLATFORMS = [PLATFORM_ESP32, PLATFORM_ESP8266]
TARGET_FRAMEWORKS = ["arduino", "esp-idf"]
# See also https://github.com/platformio/platform-espressif8266/releases