
PRO
dbeard
USA
Asked
— Edited

I am looking for a way to wait for a servo to get to a certain point before continuing on with my script. I have tired both the waitforservomove and servo_wait. But I cant get the servo to move.
The script example is below:
Servo(d1,100)
waitforservomove(d1,1000)
and I tried
servo(d1,100)
Servo_wait(d1,higher,99)
I am trying to get my servo to 100, have the script wait for that to happen, then continue on.
Any thoughts?
Code:
After yiur ControlCommand() that starts the action. The above command will wait until the Auto Position has competed.
Servo( D1, 100 ) # tell the servo to go to a position (which it knows because of feedback from the pot :: 1-180)
Servo_Wait( D1, EQUALS, 100 ) # wait until the servo gets there...
# do the next stuff