| 31 | // noise 0..255; in practice only small values are used (0..10). |
| 32 | inline void setNoiseThreshold(const uint8_t noise = 0) { _noise = noise; }; |
| 33 | inline uint8_t getNoiseThreshold(void) const { return _noise; }; |
| 34 | |
| 35 | // alpha = 0..31; |
| 36 | void setSmoothWeight(const uint8_t alpha = 0); |