MCPcopy Create free account
hub / github.com/cifertech/DisplayKit / initU8g2Presets

Function initU8g2Presets

app.js:3227–3236  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3225}
3226
3227function 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
3238function initFontList() {
3239 propFont.innerHTML = "";

Callers 1

app.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected