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

Function every_ms

src/fl/task/task.cpp.hpp:320–322  ·  view source on GitHub ↗

Free function builders (were static methods on class fl::task)

Source from the content-addressed store, hash-verified

318
319// Free function builders (were static methods on class fl::task)
320Handle every_ms(int interval_ms) {
321 return Handle(fl::make_shared<TimeTask>(TaskType::kEveryMs, interval_ms));
322}
323
324Handle every_ms(int interval_ms, const TracePoint& trace) {
325 return Handle(fl::make_shared<TimeTask>(TaskType::kEveryMs, interval_ms, trace));

Callers 8

createWithAutoInputMethod · 0.85
execute_fetch_requestFunction · 0.85
FL_TEST_FILEFunction · 0.85
FL_TEST_FILEFunction · 0.85
setupRpcAsyncTaskFunction · 0.85
maybeRegisterStubAutorunFunction · 0.85
setupFunction · 0.85

Calls 1

HandleClass · 0.85

Tested by

no test coverage detected