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

Method update

src/fl/math/filter/filter.h:217–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215 AttackDecayFilter(T attack_tau, T decay_tau, T initial = T(0))
216 : mImpl(attack_tau, decay_tau, initial) {}
217 FASTLED_FORCE_INLINE T update(T input, T dt_seconds) { return mImpl.update(input, dt_seconds); }
218 FASTLED_FORCE_INLINE T value() const { return mImpl.value(); }
219 FASTLED_FORCE_INLINE void reset(T initial = T(0)) { mImpl.reset(initial); }
220 FASTLED_FORCE_INLINE void setAttackTau(T tau_seconds) { mImpl.setAttackTau(tau_seconds); }

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected