| 292 | explicit CascadedEMA(T tau_seconds, T initial = T(0)) |
| 293 | : mImpl(tau_seconds, initial) {} |
| 294 | FASTLED_FORCE_INLINE T update(T input, T dt_seconds) { return mImpl.update(input, dt_seconds); } |
| 295 | FASTLED_FORCE_INLINE T value() const { return mImpl.value(); } |
| 296 | FASTLED_FORCE_INLINE void reset(T initial = T(0)) { mImpl.reset(initial); } |
| 297 | FASTLED_FORCE_INLINE void setTau(T tau_seconds) { mImpl.setTau(tau_seconds); } |