avdweb_AnalogReadFast
avdweb_AnalogReadFast copied to clipboard
How to use
Hi,
I am using it like that on an Arduino Uno Rev3:
#define THROW_ERROR_IF_NOT_FAST
const byte analogPin = 14; //A0 is pin 14
void loop() {
current_value = analogReadFast(analogPin);
}
Do I need any initialization in setup or something else? I need to test further, but I think I am not getting any improvement. Do I need to reduce the precision of the DAC myself?
Thanks.