Skip to content

Commit 5c3ed00

Browse files
Update README.md
1 parent e842073 commit 5c3ed00

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
#ResponsiveAnalogRead
22

3-
ResponsiveAnalogRead will be an Arduino library for eliminating noise in analogRead inputs without decreasing responsiveness.
3+
ResponsiveAnalogRead is an Arduino library for eliminating noise in analogRead inputs without decreasing responsiveness. It sets out to achieve the following:
4+
5+
1. Be able to reduce large amounts of noise when reading a signal. So if a voltage is unchanging aside from noise, the values returned should never change due to noise alone.
6+
2. Be extremely responsive (i.e. not sluggish) when the voltage changes quickly.
7+
3. Also be responsive when a voltage stops changing - the values returned must stop changing almost immediately after.
8+
4. The returned values must avoid 'jumping' up several numbers at once, especially when the input signal changes very slowly. It's better to transition smoothly as long as that smooth transition does not take too long.
49

510
##How to install
611

7-
In the Arduino IDE, go to Skethc > Include libraries > Manage libraries, and search for ResponsiveAnalogInput.
12+
In the Arduino IDE, go to Sketch > Include libraries > Manage libraries, and search for ResponsiveAnalogInput.
813
You can also just use the files directly from the src folder.
914

1015
Look at the example in the examples folder for an idea on how to use it in your own projects.

0 commit comments

Comments
 (0)