Society of Robots
     | Robot Forum | Robot Tutorials | Robot FAQ |
September 02, 2010, 09:44:49 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: March 18th - Buy an Axon or Axon II, build a great robot, and support SoR.

Robot Forum
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: New Tutorial : PWM on ATmega168  (Read 7226 times)
0 Members and 1 Guest are viewing this topic.
airman00Topic starter
Contest Winner
Supreme Robot
****

Helpful? 19
Offline Offline

Posts: 3,644


narobo.com


View Profile WWW
« on: November 30, 2008, 09:50:18 AM »

New Tutorial - http://www.societyofrobots.com/member_tutorials/node/226

Can be used to give PWM capabilities to the 50 dollar robot board or any ATmega168.

feedback appreciated.
Logged

Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com
mbateman
Full Member
***

Helpful? 0
Offline Offline

Posts: 82



View Profile WWW
« Reply #1 on: November 30, 2008, 01:16:23 PM »

Good info, but you should make it clear in the tutorial that this is useful for PWM that does not care too much about the base freqency and can use the whole range of 0-100% duty cycles. It is not suitable for servo control since it is not the correct base freqency and with the 8 bit timers, does not have sufficient granularity for the 5-10% range that servos require. For things like your LED dimmer and direct H-bridge motor control, it is very useful, though.
Logged
airman00Topic starter
Contest Winner
Supreme Robot
****

Helpful? 19
Offline Offline

Posts: 3,644


narobo.com


View Profile WWW
« Reply #2 on: November 30, 2008, 01:20:08 PM »

Good info, but you should make it clear in the tutorial that this is useful for PWM that does not care too much about the base freqency and can use the whole range of 0-100% duty cycles. It is not suitable for servo control since it is not the correct base freqency and with the 8 bit timers, does not have sufficient granularity for the 5-10% range that servos require. For things like your LED dimmer and direct H-bridge motor control, it is very useful, though.
I'll copy and paste that into the tutorial right now
Logged

Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com
Ro-Bot-X
Contest Winner
Supreme Robot
****

Helpful? 19
Offline Offline

Posts: 1,282


Current project: MiniEric robot.


View Profile
« Reply #3 on: November 30, 2008, 02:07:28 PM »

Too much cut and paste Tongue

For both Timer0 and Timer 2:

// 00   A off, toggle on compare
should be:
// 00  A Off, pin works as general I/O
same for B...
// 11   Low part of WGM: PWM, phase correct
should be:
// 11   Low part of WGM: PWM, Fast PWM

Then, when you set the pin On, you comment:
// 10   A on, toggle on compare
should be:
// 10 - A On, set at Bottom, clear at compare match

// 5   B on, toggle on compare
here instead of pin number 5, there should be the way you are setting the 2 bits for the channel B:
// 10 - B On, set at Bottom, clear at Compare match

There is no "Toggle on Compare", they should all be "Set at Bottom, Clear at Compare match" for all timers in the setup you are using.

Other than that, the functionality is good, just the comments are wrong. We don't want people to get confused, right?
Logged

Check out my new blog!
 SeriousRobotics
Webbot
Expert Roboticist
Supreme Robot
*****

Helpful? 51
Offline Offline

Posts: 1,434



View Profile WWW
« Reply #4 on: November 30, 2008, 02:21:16 PM »

@airman00

Hey, I've started doing a tutorial on PWM as well. Didn't mean to step on your toes but my idea was to cover the subject generically - not just Mega168, Roboduino etc. Just that there seem to be loads of questions/misunderstandings about it.

Its up there but unfinished and is still work in progress.

Will eventually also cover doing PWM via software rather than hardware
Logged

Webbot Home: http://webbot.org.uk/
WebbotLib online docs: http://webbot.org.uk/WebbotLibDocs
If your in the neighbourhood: http://www.hovinghamspa.co.uk
airman00Topic starter
Contest Winner
Supreme Robot
****

Helpful? 19
Offline Offline

Posts: 3,644


narobo.com


View Profile WWW
« Reply #5 on: November 30, 2008, 02:22:38 PM »

Tongue yea you caught me RobotX , I'll edit the comments sometime today .

@Webbot
OK cool Looking forward to it
Logged

Check out the Roboduino, Arduino-compatible board!


Link: http://curiousinventor.com/kits/roboduino

www.Narobo.com
Ro-Bot-X
Contest Winner
Supreme Robot
****

Helpful? 19
Offline Offline

Posts: 1,282


Current project: MiniEric robot.


View Profile
« Reply #6 on: November 30, 2008, 02:31:02 PM »

Can you also add a formula to convert the 0-255 value to 0-100 percentage? That way it doesnt matter if the timer is 8 or 16 bit...

So instead of writing:
 pwmSet5(255); //pin6   which is 8 bit PWM
to write:
pwmSet5(100); //pin6   which is 8 bit PWM

I know this reduces the granularity, but sometimes is more usefull. Maybe a pwmPercentSet5(value) command?
« Last Edit: November 30, 2008, 02:33:23 PM by Ro-Bot-X » Logged

Check out my new blog!
 SeriousRobotics
Webbot
Expert Roboticist
Supreme Robot
*****

Helpful? 51
Offline Offline

Posts: 1,434



View Profile WWW
« Reply #7 on: November 30, 2008, 03:50:47 PM »

I recommend a general linear interpolation routine such as:
Code:
/*
* Interpolate between two numbers
* value - the current value to be used
*   minVal - the minimum that 'value' can be
*   maxVal - the maximum that 'value' can be
*   minRtn - the return value if 'value = minVal'
*   maxRtn - the return value if 'value = maxVal'
*   return a value in the range minRtn to maxRtn
*/
int interpolate(int value, int minVal, int maxVal, int minRtn, int maxRtn){
long int lRtnRange = maxRtn - minRtn;
long int lValRange = maxVal - minVal;
long int lRelVal = value - minVal;
lRtnRange =  minRtn + ( lRtnRange * lRelVal / lValRange );
return (int)lRtnRange;
}
Logged

Webbot Home: http://webbot.org.uk/
WebbotLib online docs: http://webbot.org.uk/WebbotLibDocs
If your in the neighbourhood: http://www.hovinghamspa.co.uk
Admin
Administrator
Supreme Robot
*****

Helpful? 110
Offline Offline

Posts: 9,833



View Profile WWW
« Reply #8 on: December 02, 2008, 01:58:27 AM »

I just added it to the $50 Robot tutorial.
Logged

Pages: [1]
  Print  
 
Jump to:  


Related Topics
Subject Started by Replies Views Last post
need help with pwm in atmega168
Software
rox2007 8 3215 Last post January 20, 2008, 09:46:40 AM
by rox2007
Help with Atmega168 and Ponyprog
Electronics
Jdog 7 1900 Last post December 08, 2008, 02:14:21 PM
by pomprocker
Help with PWM on ATMega168!
Software
clone 4 860 Last post January 29, 2009, 10:50:20 PM
by Webbot
ATMega168
Electronics
walkercreations 13 856 Last post October 16, 2009, 06:29:51 AM
by SmAsH
Powered by MySQL Powered by PHP Powered by SMF | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!


Advertise on this Forum