I've done ESC calibration using PWM from RPIO and set it's value to 2000 at first then 1000, after the long BIP it was set to go and when I set random value like 1300 or 1500 it would spin but only for a 5 seconds then slowly stops. How do I control it, add speed? I've done that motor_test.py that is on the internet and same results comes up. It looks like this one https://www.youtube.com/watch?v=-98xwAnkazI , and what now, how do I control its speed and why does it stop? Thanks
import time
from RPIO import
PWM s=PWM.Servo()
s.set_mode(PIN,2000)
time.sleep(5)
s.set_mode(PIN,2000)
time.sleep(5)
s.set_mode(PIN,1500)
import time
from RPIO import PWM
s=PWM.Servo()
s.set_mode(PIN,2000)
time.sleep(5)
s.set_mode(PIN,2000)
time.sleep(5)
s.set_mode(PIN,1500)
ESC 30A and A2212/13T motor
– Nemanja Ranković Aug 05 '15 at 21:41set_servo(PIN,value) ?
– Nemanja Ranković Aug 05 '15 at 21:41