DC motor speed control with PIC18F4550 and CCS PIC C

DC motor interface with PIC18F4550 microcontroller

It is easy to control the speed of a DC motor using PIC18F4550 microcontroller since this microcontroller has a CCP module to generate a PWM signal, and by varying the duty cycle of the PWM signal the power delivered to the motor will also vary which causes the speed to change. This topic shows how to make a DC motor speed controller using PIC18F4550 where a potentiometer is used to control motor speed.
If you need to see how to use potentiometer with PIC18F4550 visit the following topic:
PIC18F4550 ADC example with CCS PIC C compiler

And if you need to see how to use PIC18F4550 PWM module signal visit the following topic:
PIC18F4550 PWM example using CCS PIC C

DC Motor speed control with PIC18F4550 circuit:
To control the speed of a DC motor only one transistor is needed, in this project an N-type mosfet is used as shown in the circuit schematic below:
PIC18F4550 DC motor speed control circuit
The nominal voltage of the DC motor is 12V.
The potentiometer used to control the speed of the motor, it is connected to AN0. The microcontroller reads the analog data from AN0 channel and uses the digital value (after conversion) to set the PWM duty cycle.
PIC18F4550 CCP1 module is used as PWM with a frequency of 500Hz.
PIC18F4550 microcontroller internal oscillator is used (8MHz) and MCLR pin function is disabled.
The PIC18F4550 microcontroller needs to be supplied with 5V between pins VDD (#11) and VSS (#12).

DC Motor speed control with PIC18F4550 CCS C code:
The code is described through its comments so there is no thing to add.

DC Motor speed control with PIC18F4550 video:
The following video shows a hardware circuit for this project with some details.

Leave a Comment

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Scroll to Top