Olimex Support Forum

OLinuXino Android / Linux boards and System On Modules => A13 => Topic started by: MMp131316 on April 18, 2013, 09:39:42 PM

Title: Controling servo with python and A13 also generating PWM through a pin
Post by: MMp131316 on April 18, 2013, 09:39:42 PM
Hello all ;),
I am trying to control a medium servo motor with python, and i am wondering if there are any python libraries with which i can control more easilly the servos( something like servo.move(number_of_degrees)) or at least is there any python function to give a pwm through a pin?

Thanks for your time!
Regards. ;)
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: olimex on April 18, 2013, 10:11:35 PM
it would be tricky to do PWM with pulse width 900-2200 uS on Linux
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: MMp131316 on April 21, 2013, 07:56:13 PM
It trully was a simple task ::) I thought it would be more difficult :)
Thanks anyway
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: olimex on April 21, 2013, 10:40:26 PM
can you repeat it while running several video players ;)
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: MMp131316 on April 22, 2013, 05:23:25 PM
I repetated it with 2 video players and it worked ok. Should have i observed some delays when the servo was moving?? :)
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: olimex on April 22, 2013, 06:15:52 PM
no, you should see servo turned at wrong angles
servo tunr angle depend on the pulse width
Llinux RTOS cant guarantee fixed time for code execution as if higher priority task interrupt your code while it makes the pulse this pulse width may vary i.e. your servo angle may vary too depend on how many processes you run on your board
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: empedokles on April 25, 2013, 09:44:15 PM
Python can't be used for controlling servos? Is this correct?
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: olimex on April 26, 2013, 08:55:30 AM
Our tests show Python bit-bang ON/OFF acheieve 100kHz i.e. 10 uS resolutioin which on the normal servos which require timing between 800 and 2100 uS represent 1 degree resolution, so yes, it's possible
the problem is that Linux is RTOS and if the code will be executed at same speed depend on how many processes you are running at the same time
i.e. running Servo and meantime packet is received from the Ethernet, and at the same time user decides to play video and processor must decode video stream etc.
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: JohnS on April 26, 2013, 10:46:43 AM
I think you mean:
Linux is not RTOS

John
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: olimex on April 26, 2013, 10:58:12 AM
I mean that when you may have N-processes (where N is 1 to 100) running at same time you can't make sure your code will be executed always at same speed
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: empedokles on April 26, 2013, 11:20:00 AM
Could one solve that by another module or shield? Which controls motors?
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: olimex on April 26, 2013, 12:57:09 PM
sure AVR-T32U4 will drive up to 7 servos IIRC and you can control it through the UEXT or USB
Title: Re: Controling servo with python and A13 also generating PWM through a pin
Post by: Simon on February 14, 2014, 05:04:05 PM
Hi all,

Like Olimex stated it may result in unwanted movement of the servo if you make the pulse using Python. The other way to do this is to use an on-chip hardware timer that will produce the pulse for you. Now you only need to set the timer registers determining the cycle time and the on-time. This results in the following questions:
1. is there a timer available?
2. with an external IO pin?
3. and is there a driver?
4. how to access it from Python?
Hoping for an answer.
Regards, Simon.