MCPcopy Create free account
hub / github.com/FastLED/FastLED / updateJs

Function updateJs

src/platforms/wasm/js_bindings.cpp.hpp:386–393  ·  view source on GitHub ↗

* Pure C++ UI Update Function - Simple data processing */

Source from the content-addressed store, hash-verified

384 * Pure C++ UI Update Function - Simple data processing
385 */
386EMSCRIPTEN_KEEPALIVE void updateJs(const char* jsonStr) {
387 fl::printf("updateJs: ENTRY - PURE C++ VERSION - jsonStr=%s\n", jsonStr ? jsonStr : "nullptr");
388
389 // Process UI input using pure C++ function
390 ::processUiInput(jsonStr);
391
392 fl::printf("updateJs: EXIT - PURE C++ VERSION\n");
393}
394
395/**
396 * Strip Pixel Data Access - Critical JavaScript Bridge

Callers

nothing calls this directly

Calls 2

printfFunction · 0.85
processUiInputFunction · 0.85

Tested by

no test coverage detected