[Simple] Generating Pulse Width Modulation using PIC Microcontroller – Mikro C & Proteus Simulation

Simple Generating Pulse Width Modulation

How to generate Pulse Width Modulation (PWM) using PIC microcontroller? This is going to be a continuation of our microcontroller online tutorial series. This article covers the detailed explanation and simulation of PWM generation using PIC16F877A microcontroller.What is a Pulse Width Modulator? A PWM has series of pulses with variable pulse width. We have used Mikro C pro for pic microcontroller programming because it has inbuilt library functions to do many operations especially in PWM, this will simplify the user headache.

Simple Generating Pulse Width Modulation

The simulation is done with Proteus design suite. In my previous article we have already discussed How to Simulate PIC Microcontroller in Proteus?

PWM has wide applications in automation such as DC motor speed control circuit , generating analog signals from digital signals and LED brightness control.

PWM and PIC

Two CCP module is available with a PIC16F877A MCU. It is capable of generating PWM signals.

MikroC PRO for PIC provides library which simplifies PWM operations. The generated PWM output comes via pin No: 16 and 17 of PIC16F877A microcontroller.

As the name indicates, CCP (Capture Compare PWM) has 3 modes of operation.

  1. Capture mode
  2. Compare mode
  3. PWM mode

In PWM mode PIC can generate signals of varying frequency and duty cycle.

Other modes are beyond the scope of this article. We will discuss those modes later.

Now let’s begin PIC PWM generation!

Simple Generating Pulse Width Modulation Schematic

Add PWM Library to Mikro C

Before writing the program we should add PWM library functions to our code. Otherwise you may be getting compilation errors such as ‘Undeclared identifier PWM1_Init in expression’.

So open ‘Library Manager’ tab and put a check mark on ‘PWM’ library. Then proceed to the program.

Interpretation of important codes

PWM1_Init(5000);
There are two CCP modules inside PIC16F877A. Our program is manipulating the 1st module, thus ‘PWM1′ is used here. ‘_Init’ means initializing the PWM1  for 5KHz.

PWM1_Start();
Start PWM1 signal.

PWM1_Set_Duty(duty1);
Set current duty cycle for PWM1, using this code we are varying the pulse width.

Read more: [Simple] Generating Pulse Width Modulation using PIC Microcontroller – Mikro C & Proteus Simulation

Leave a Comment

Your email address will not be published. Required fields are marked *