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

Function exportAllIconsTftRgb565

app.js:2500–2515  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2498}
2499
2500async function exportAllIconsTftRgb565() {
2501 if (!FILE_ICONS.length) {
2502 setIconHint("No icons loaded. Check your icon manifest.");
2503 return;
2504 }
2505 if (document.documentElement.dataset.displaykitApi === "1") {
2506 try {
2507 await exportAllIconsViaServer("tft_rgb565");
2508 return;
2509 } catch (e) {
2510 console.warn("Server TFT icon export failed, using browser:", e);
2511 setIconHint("Server export failed — using browser.");
2512 }
2513 }
2514 await exportAllIconsTftRgb565Client();
2515}
2516
2517async function exportAllIconsU8g2XbmClient() {
2518 setIconHint("Exporting U8g2 XBM…");

Callers 1

app.jsFile · 0.85

Calls 3

setIconHintFunction · 0.85
exportAllIconsViaServerFunction · 0.85

Tested by

no test coverage detected