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

Method start

src/platforms/wasm/audio_input_wasm.cpp.hpp:49–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49void WasmAudioInput::start() {
50 if (mRunning) {
51 FL_DBG("WasmAudioInput already running - skipping start");
52 return; // Already running, don't re-initialize
53 }
54
55 mRunning = true;
56 mHasError = false;
57 mErrorMessage.clear();
58 FL_DBG("WasmAudioInput started");
59}
60
61void WasmAudioInput::stop() {
62 mRunning = false;

Callers 1

initWasmAudioFunction · 0.45

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected