| 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); } |
| 221 | FASTLED_FORCE_INLINE void setDecayTau(T tau_seconds) { mImpl.setDecayTau(tau_seconds); } |
| 222 | private: |