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

Method set_interval_ms

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

Source from the content-addressed store, hash-verified

306TaskType Handle::type() const { return mImpl ? mImpl->type() : TaskType::kEveryMs; }
307int Handle::interval_ms() const { return mImpl ? mImpl->interval_ms() : 0; }
308void Handle::set_interval_ms(int interval_ms) { if (mImpl) mImpl->set_interval_ms(interval_ms); }
309fl::u32 Handle::last_run_time() const { return mImpl ? mImpl->last_run_time() : 0; }
310void Handle::set_last_run_time(fl::u32 time) { if (mImpl) mImpl->set_last_run_time(time); }
311bool Handle::ready_to_run(fl::u32 current_time) const { return mImpl ? mImpl->ready_to_run(current_time) : false; }

Callers 1

setIntervalMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected