Quote:
Originally Posted by Bomberofdoom
How exactly do you stop calling a function? Unless you use an if code to define that once something happens, move on with the code, not going over Servo_Track() again, how can you stop calling it?
|
That is exactly how you do it.
Code:
if(I_want_to_search)
Servo_Track();
Just make "I_want_to_search" true to begin with, and make it false when you don't want to call Servo_Track() anymore.