Add ESP32 c3/s2/s3 variants (#323)

* Update ESPHome manifest to include esp32 c3/s2/s3 variants

* Delete static ESPHome firmwares

* Remove submodule
This commit is contained in:
Jesse Hills 2023-01-31 17:34:26 +13:00 committed by GitHub
parent 06979ee419
commit c39d358701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 40 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,16 +1,53 @@
{ {
"name": "ESPHome", "name": "ESPHome",
"version": "2022.3.0", "version": "2022.12.8",
"home_assistant_domain": "esphome", "home_assistant_domain": "esphome",
"funding_url": "https://esphome.io/guides/supporters.html", "funding_url": "https://esphome.io/guides/supporters.html",
"builds": [ "builds": [
{ {
"chipFamily": "ESP32", "chipFamily": "ESP32",
"parts": [{ "path": "esp32.bin", "offset": 0 }] "parts": [
{
"path": "https://firmware.esphome.io/esphome-web-esp32/esphome-web-esp32.bin",
"offset": 0
}
]
},
{
"chipFamily": "ESP32-C3",
"parts": [
{
"path": "https://firmware.esphome.io/esphome-web-esp32c3/esphome-web-esp32c3.bin",
"offset": 0
}
]
},
{
"chipFamily": "ESP32-S2",
"parts": [
{
"path": "https://firmware.esphome.io/esphome-web-esp32s2/esphome-web-esp32s2.bin",
"offset": 0
}
]
},
{
"chipFamily": "ESP32-S3",
"parts": [
{
"path": "https://firmware.esphome.io/esphome-web-esp32s3/esphome-web-esp32s3.bin",
"offset": 0
}
]
}, },
{ {
"chipFamily": "ESP8266", "chipFamily": "ESP8266",
"parts": [{ "path": "esp8266.bin", "offset": 0 }] "parts": [
{
"path": "https://firmware.esphome.io/esphome-web-esp8266/esphome-web-esp8266.bin",
"offset": 0
}
]
} }
] ]
} }