暫無描述

Paulus Schoutsen 17cae7b9d4 10.1.1 4 天之前
.devcontainer bf0de9fdf3 Bump devcontainer Node version to 20 (#442) 1 年之前
.github 93fe093c5e Bump release-drafter/release-drafter from 5 to 6 (#472) 1 年之前
script b7b4b5beba Use PORT env var to customize script/develop port (#502) 11 月之前
src bcaf930531 Performance improvements/fixes (#592) 4 天之前
static 5919137b26 Add TreadSpan to list of projects (#573) 2 周之前
.gitignore fc4df1c8bb Drop yarn in favor of npm 4 年之前
.npmignore 7cf91fa76b Prepare release 4 年之前
.prettierignore 43ef1358f3 Add prettier ignore 4 年之前
LICENSE fff135bb4f Create LICENSE (#461) 1 年之前
README.md 6b2ff90895 Add OHF logo to README (#519) 7 月之前
index.html 5919137b26 Add TreadSpan to list of projects (#573) 2 周之前
package-lock.json 763680a43a Bump @babel/preset-env from 7.26.9 to 7.27.1 (#591) 1 周之前
package.json 17cae7b9d4 10.1.1 4 天之前
rollup.config.mjs df7b4c69e0 Switch to preset-env for babel (#476) 1 年之前
tsconfig.json 867ff64e07 Bump typescript from 4.9.5 to 5.1.3 (#378) 1 年之前

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.

ESPHome - A project from the Open Home Foundation