Bob Jones's Discussions (4)

Sort by

Turning copter with python scripts

I'm trying to turn my copter using a python script, but the copter is not turning.


Script.SendRC(3,1450,True) #throttle
Script.SendRC(4,1750, True) #yaw
while(cs.yaw < 300):
    print cs.yaw
    Script.Sleep(600)

It stays in the while loop forever becau

Read more…