Sen descrición

dependabot[bot] fb6524c967 Bump rollup from 4.9.5 to 4.9.6 (#467) hai 1 ano
.devcontainer bf0de9fdf3 Bump devcontainer Node version to 20 (#442) hai 1 ano
.github e02fd6351c Bump actions/checkout from 3 to 4 (#412) hai 1 ano
script b430c71264 Bump deps (#381) %!s(int64=2) %!d(string=hai) anos
src 21c23206d0 Add dialout permissions instructions to no-port (#427) hai 1 ano
static 5beb5cf4ad Add the OpenEpaperLink project (#398) hai 1 ano
.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
LICENSE fff135bb4f Create LICENSE (#461) hai 1 ano
README.md d87f076071 Update README.md %!s(int64=3) %!d(string=hai) anos
index.html 5beb5cf4ad Add the OpenEpaperLink project (#398) hai 1 ano
package-lock.json fb6524c967 Bump rollup from 4.9.5 to 4.9.6 (#467) hai 1 ano
package.json 4527133413 Update package.json -> 9.4.3 hai 1 ano
rollup.config.mjs 39ae5dc40c Update dependencies (#303) %!s(int64=2) %!d(string=hai) anos
tsconfig.json 867ff64e07 Bump typescript from 4.9.5 to 5.1.3 (#378) %!s(int64=2) %!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.