Hello,
AdvancedADC adc1(A0, A1);
void setup() {
if (!adc1.begin(AN_RESOLUTION_16, 1000, 2, 5, true, AN_ADC_SAMPLETIME_387_5)) {
.
.
My questions:
1.) What does it change using AN_ADC_SAMPLETIME_387_5 instead of the default _8_5 cycles? It takes longer, but does it give more accurate results?
2.) I understand that the the sampled values are in the buffer like:
1st of A0, 1st of A1, 2nd of A0, 2nd of A1
3.) but at which times are the sampled and converted?
the frequency is 1000 Hz, so T = 1 ms
say, the timer-tick comes are then
1st of A0, 1st of A1, 2nd of A0, 2nd of A1
converted as quickly as possible in this order?