()
| 8 | let _esptool = null; |
| 9 | |
| 10 | async function getEsptool() { |
| 11 | if (_esptool) return _esptool; |
| 12 | _esptool = await import("https://unpkg.com/esptool-js@0.6.0/bundle.js"); |
| 13 | return _esptool; |
| 14 | } |
| 15 | |
| 16 | /* ── UI helpers ── */ |
| 17 | const $ = (id) => document.getElementById(id); |