I'm reading an analogue value from a Pin on a µC. I want to check periodically if the value has changed more than x. Here, I am using the abs() function, but I want to keep it simple. Can you help me?

int algVal= 0;
int oldVal = 0

while(1){

  algVal = getAlgVal();

  if(abs(algVal - oldVal) > x)
   {
    doStuff();
   }

  oldVal= algVal:

}
link|improve this question

79% accept rate
what's wrong with the code? – duedl0r Jan 26 at 10:03
How much simpler do you want this to get? It's gonna be difficult. – Cicada Jan 26 at 10:03
I don't see how much simpler it can get. What do you need help with? – thiton Jan 26 at 10:03
Is it the "periodically" that you require help with or the implementation of getAlgVal()?. – hmjd Jan 26 at 10:04
The only problem that I forsee is that your code will remain in the while loop. This could be a problem if you need to do anything else with your processor, other than check this input pin. – ChrisBD Jan 26 at 11:03
feedback

1 Answer

up vote 1 down vote accepted

That sounds like a fantastic approach, and would probably be very nice in terms of runtime performance, abs() for integers is cheap. If in doubt, read the generated assembly of course.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.