ResponsiveAnalogRead
ResponsiveAnalogRead copied to clipboard
Arduino library for eliminating noise in analogRead inputs without decreasing responsiveness.
Hi, how would you use the library with a multiplexer (like 4067 or 4051 for example) and a single ADC on the micro controller ? `update(int rawValueRead); ` Thanks
Im having trouble understanding how to use the setAnalogResolution and setSnapMultiplier functions can someone clue me in on how to format them?
Hello, I've tried the library on a Teensy 3.1. It works well. Would you consider making it compatible with a 12-bit analog resolution? Currently it seems to be limited to...
The README has a link to http://damienclarke.me/code/posts/writing-a-better-noise-reducing-analogread which redirects back to GitHub hence is of little use. Is the text of the referred article available? Maybe it could be added...
In getResponsiveValue: ` // when sleep is enabled, the emphasis is stopping on a responsiveValue quickly, and it's less about easing into position. // If sleep is enabled, add a...
- Remove previous version, stubbed new version - Added docs - `emscripten` and `embind` for web assembly compilation (C++ to Javascript) - `gatsby` and `react` for static site generation -...
File has been updated to read extensive range of analog inputs at Arduino.
The file has been updated to extend the range of detection of values coming at arduino analog input pins.
Hello! I tried to compile code with arduino 1.0.6 with Atmega8 microcontroller and got following error during compilation. In file included from pulseWidthCalculator_V01.ino:3: C:\Users\Strange Lab\Documents\Arduino\libraries\ResponsiveAnalogRead\src/ResponsiveAnalogRead.h:64: error: ISO C++ forbids initialization...
in ResponsiveAnalogRead.h, `float smoothValue;` may cause problems (I had a problem in one of my projects where different hardware initialised with different values). Should possibly be `float smoothValue = 0.0;`