https://github.com/ericksimoes/anoise
Library that returns smoothed values, reducing noise read from a sensor for Arduino
https://github.com/ericksimoes/anoise
arduino noise sensor smoothing
Last synced: about 2 months ago
JSON representation
Library that returns smoothed values, reducing noise read from a sensor for Arduino
- Host: GitHub
- URL: https://github.com/ericksimoes/anoise
- Owner: ErickSimoes
- License: mit
- Created: 2017-01-21T02:57:00.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-02T02:50:32.000Z (over 9 years ago)
- Last Synced: 2025-06-02T07:39:13.696Z (about 1 year ago)
- Topics: arduino, noise, sensor, smoothing
- Language: C
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# anoise
_Library that returns smoothed values, reduces noise read from a sensor_
> Note: So far the library has only a value smoothing implementation.
## `Smooth()` function
> It is necessary to first determine a value for the range by using the `setRangeSize(uint8_t range)` method.
The `Smooth()` function is given an integer value. It will return the same value if the value is not less than itself plus the range nor itself less than the range. If the read value is out of range, it returns this new value.