Pulse Width Modulation

What is Pulse-width Modulation?

Pulse Width Modulation (PWM) is a fancy term for describing a type of digital signal. Pulse width modulation is used in a variety of applications including sophisticated control circuitry. A common way we use them is to control the dimming of RGB LEDs or to control the direction of a servo. We can accomplish a range of results in both applications because pulse width modulation allows us to vary how much time the signal is high in an analog fashion. While the signal can only be high (usually 5V) or low (ground) at any time, we can change the proportion of time the signal is high compared to when it is low over a consistent time interval.

Robot arm with Pulse Width Modulation
Robotic claw controlled by a servo motor using pulse-width modulation

Duty Cycle

When the signal is high, we call this “on time”. To describe the amount of “on time”, we use the concept of the duty cycle. The duty cycle is measured in percentage. The percentage duty cycle specifically describes the percentage of time a digital signal is on over an interval or period of time. This period is the inverse of the frequency of the waveform.

If a digital signal spends half of the time on and the other half off, we would say the digital signal has a duty cycle of 50% and resembles an ideal square wave. If the percentage is higher than 50%, the digital signal spends more time in the high state than the low state and vice versa if the duty cycle is less than 50%. Here is a graph that illustrates these three scenarios:

50%, 75%, and 25% Duty Cycle Examples
50%, 75%, and 25% Duty Cycle Examples

A 100% duty cycle would be the same as setting the voltage to 5 Volts (high). A 0% duty cycle would be the same as grounding the signal.

Examples

You can control the brightness of an LED by adjusting the duty cycle.

PWM used to control LED brightness
PWM used to control LED brightness

With an RGB (red green blue) LED, you can control how much of each of the three colors you want in the mix of colors by dimming them with various amounts.

Basics of color mixing
Basics of color mixing

If all three are on in equal amounts, the result will be a white light of varying brightness. Blue equally mixed with green will get teal. For a slightly more complex example, try turning red fully on, and green 50% duty cycle, and blue fully off to get an orange color.

PWM can be used to mix RGB color
PWM can be used to mix RGB color

The frequency of the square wave does need to be sufficiently high enough when controlling LEDs to get the proper dimming effect. A 20% duty cycle wave at 1 Hz will be obvious that it’s turning on and off to your eyes meanwhile, a 20% duty cycle at 100 Hz or above will just look dimmer than fully on. Essentially, the period can not be too large if you’re aiming for a dimming effect with the LEDs.

You can also use pulse width modulation to control the angle of a servo motor attached to something mechanical like a robot arm. Servos have a shaft that turns to a specific position based on its control line.

Frequency/period is specific to controlling a specific servo. A typical servo motor expects to be updated every 20 ms with a pulse between 1 ms and 2 ms, or in other words, between a 5 and 10% duty cycle on a 50 Hz waveform. With a 1.5 ms pulse, the servo motor will be at the natural 90-degree position. With a 1 ms pulse, the servo will be at the 0-degree position, and with a 2 ms pulse, the servo will be at 180 degrees. You can obtain the full range of motion by updating the servo with a value in between.

PWM used to hold a servo motor at 90 degrees relative to its bracket
PWM used to hold a servo motor at 90 degrees relative to its bracket

Resources and Going Further

Pulse width modulation is used in a variety of applications, particularly for control. You already know it can be used for the dimming of LEDs and controlling the angle of servo motors and now you can begin to explore other possible uses. If you’re ready to jump into coding immediately and have an Arduino, look at the PWM coding example here.


Source: SparkFun.com

Author: admin

Leave a Reply