mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-25 23:28:28 +02:00
Fix old-style arduino_version on ESP8266 and with magic values (#2591)
This commit is contained in:
committed by
Otto winter
parent
ed0b34b2fe
commit
115bca98f1
+4
-1
@@ -4,7 +4,10 @@ __version__ = "2021.10.1"
|
||||
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user