()
| 3225 | } |
| 3226 | |
| 3227 | function initU8g2Presets() { |
| 3228 | u8g2PresetSelect.innerHTML = ""; |
| 3229 | U8G2_PRESETS.forEach(p => { |
| 3230 | const opt = document.createElement("option"); |
| 3231 | opt.value = p.id; |
| 3232 | opt.textContent = p.label; |
| 3233 | u8g2PresetSelect.appendChild(opt); |
| 3234 | }); |
| 3235 | u8g2PresetSelect.value = u8g2PresetId; |
| 3236 | } |
| 3237 | |
| 3238 | function initFontList() { |
| 3239 | propFont.innerHTML = ""; |