MCPcopy Index your code
hub / github.com/cifertech/DisplayKit / exportAllIconsU8g2Xbm

Function exportAllIconsU8g2Xbm

app.js:2559–2574  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2557}
2558
2559async function exportAllIconsU8g2Xbm() {
2560 if (!FILE_ICONS.length) {
2561 setIconHint("No icons loaded. Check your icon manifest.");
2562 return;
2563 }
2564 if (document.documentElement.dataset.displaykitApi === "1") {
2565 try {
2566 await exportAllIconsViaServer("u8g2_xbm");
2567 return;
2568 } catch (e) {
2569 console.warn("Server U8g2 icon export failed, using browser:", e);
2570 setIconHint("Server export failed — using browser.");
2571 }
2572 }
2573 await exportAllIconsU8g2XbmClient();
2574}
2575
2576let uiExamplesActiveTab = "tft"; // "tft" | "oled"
2577const UI_EXAMPLES_PER_PAGE = 3;

Callers 1

app.jsFile · 0.85

Calls 3

setIconHintFunction · 0.85
exportAllIconsViaServerFunction · 0.85

Tested by

no test coverage detected