Sen descrición

dependabot[bot] bccfa6c1a6 Bump rollup from 3.12.0 to 3.17.3 (#339) %!s(int64=2) %!d(string=hai) anos
.devcontainer fc4df1c8bb Drop yarn in favor of npm %!s(int64=4) %!d(string=hai) anos
.github 38e1398e0f Log ESP Web Tools version (#328) %!s(int64=2) %!d(string=hai) anos
script 38e1398e0f Log ESP Web Tools version (#328) %!s(int64=2) %!d(string=hai) anos
src 12fc656f15 Bump esptool-js to 0.2.1 (#340) %!s(int64=2) %!d(string=hai) anos
static c39d358701 Add ESP32 c3/s2/s3 variants (#323) %!s(int64=2) %!d(string=hai) anos
.gitignore fc4df1c8bb Drop yarn in favor of npm %!s(int64=4) %!d(string=hai) anos
.npmignore 7cf91fa76b Prepare release %!s(int64=4) %!d(string=hai) anos
.prettierignore 43ef1358f3 Add prettier ignore %!s(int64=4) %!d(string=hai) anos
README.md d87f076071 Update README.md %!s(int64=3) %!d(string=hai) anos
index.html 06979ee419 Actually still recommend users 9 (#322) %!s(int64=2) %!d(string=hai) anos
package-lock.json bccfa6c1a6 Bump rollup from 3.12.0 to 3.17.3 (#339) %!s(int64=2) %!d(string=hai) anos
package.json 12fc656f15 Bump esptool-js to 0.2.1 (#340) %!s(int64=2) %!d(string=hai) anos
rollup.config.mjs 39ae5dc40c Update dependencies (#303) %!s(int64=2) %!d(string=hai) anos
tsconfig.json 90a415d669 Update MWC to 0.26.1 (#234) %!s(int64=3) %!d(string=hai) anos

README.md

ESP Web Tools

Allow flashing ESPHome or other ESP-based firmwares via the browser. Will automatically detect the board type and select a supported firmware. See website for full documentation.

<esp-web-install-button
  manifest="firmware_esphome/manifest.json"
></esp-web-install-button>

Example manifest:

{
  "name": "ESPHome",
  "version": "2021.10.3",
  "home_assistant_domain": "esphome",
  "funding_url": "https://esphome.io/guides/supporters.html",
  "builds": [
    {
      "chipFamily": "ESP32",
      "parts": [
        { "path": "bootloader_dout_40m.bin", "offset": 4096 },
        { "path": "partitions.bin", "offset": 32768 },
        { "path": "boot_app0.bin", "offset": 57344 },
        { "path": "esp32.bin", "offset": 65536 }
      ]
    },
    {
      "chipFamily": "ESP32-C3",
      "parts": [
        { "path": "bootloader_dout_40m.bin", "offset": 0 },
        { "path": "partitions.bin", "offset": 32768 },
        { "path": "boot_app0.bin", "offset": 57344 },
        { "path": "esp32-c3.bin", "offset": 65536 }
      ]
    },
    {
      "chipFamily": "ESP32-S2",
      "parts": [
        { "path": "bootloader_dout_40m.bin", "offset": 4096 },
        { "path": "partitions.bin", "offset": 32768 },
        { "path": "boot_app0.bin", "offset": 57344 },
        { "path": "esp32-s2.bin", "offset": 65536 }
      ]
    },
    {
      "chipFamily": "ESP32-S3",
      "parts": [
        { "path": "bootloader_dout_40m.bin", "offset": 4096 },
        { "path": "partitions.bin", "offset": 32768 },
        { "path": "boot_app0.bin", "offset": 57344 },
        { "path": "esp32-s3.bin", "offset": 65536 }
      ]
    },
    {
      "chipFamily": "ESP8266",
      "parts": [
        { "path": "esp8266.bin", "offset": 0 }
      ]
    }
  ]
}

Development

Run script/develop. This starts a server. Open it on http://localhost:5001.