These are two approaches trying to do the same task.
This is part of greater loop, performing several readings from analog pin.
Goal is to "stop the loop" and read analog pin until final condition is met (until i < 10) and than store the average value and continue with next instructions in loop.
I want to be SURE that all the readings (in this case 10) are done before loop continues.
Which one is better?
First approach:
Second approach:
This is part of greater loop, performing several readings from analog pin.
Goal is to "stop the loop" and read analog pin until final condition is met (until i < 10) and than store the average value and continue with next instructions in loop.
I want to be SURE that all the readings (in this case 10) are done before loop continues.
Which one is better?
First approach:
Code:
loop ... int average = 0; int getButton() { int i, z, button; average = analogRead(AnalogPin); for (int i = 0; i < 10; i++) { average = average + (analogRead(AnalogPin) - average) / 128; } z = average; ... loop
Code:
loop ... int average = 0; int getButton() { int i, z, button; i = 0; do { average = analogRead(AnalogPin); average = average + (analogRead(AnalogPin) - average) / 128; i++; } while (i < 10); z = average; ... loop
Comment