Difference between revisions of "PIC18F4520: Digital Outputs"

From Mech
Jump to navigationJump to search
Line 6: Line 6:
==Digital Outputs Example==
==Digital Outputs Example==
===Sample Code===
===Sample Code===
Program to blink one LED on and off every half second.

First include header file with definitions for specific PIC.
Set fuses. HS is type of external clock, low voltage protection
(LVP) is off, and the watchdog timer (WDT) is off.
External clock frequency of 20 MHz is specified.

#include <18f4520.h>
#fuses HS,NOLVP,NOWDT
#use delay (clock=20000000)

Define pin names to be used in the main program. See header file
for currently defined pin names.

#define LED_0 PIN_C0

Begin main body of program. Notice main is a function of "void". This
is a more explicit way of saying main is a function of nothing. Using
main() is equivalent. Every program is required to have a function
called "main".

void main(void) {

Setup an infinite loop, using a while statement.

while(TRUE){

Turn LED on and off by setting its pin low or high, with a delay
between each switching.

output_low(LED_0);
delay_ms(500);
output_high(LED_0);
delay_ms(500);}
}
===Circuit Diagram===
===Circuit Diagram===
[[Image:digitaloutckt.jpg]]

==Digital Output Ports Example==
==Digital Output Ports Example==
===Sample Code===
===Sample Code===

Revision as of 09:49, 28 June 2007

Available Pins

With the exception of the positive voltage supply and ground pins, all pins on the PIC18F4520 can be used as digital I/O, however a few other pins (shown in grey below) are commonly utilized for communication instead of digital I/O.

4520pindiagramdigital.jpg

Digital Outputs Example

Sample Code

Program to blink one LED on and off every half second.

First include header file with definitions for specific PIC. Set fuses. HS is type of external clock, low voltage protection (LVP) is off, and the watchdog timer (WDT) is off. External clock frequency of 20 MHz is specified.

  #include <18f4520.h>
  #fuses HS,NOLVP,NOWDT
  #use delay (clock=20000000)

Define pin names to be used in the main program. See header file for currently defined pin names.

  #define LED_0 PIN_C0

Begin main body of program. Notice main is a function of "void". This is a more explicit way of saying main is a function of nothing. Using main() is equivalent. Every program is required to have a function called "main".

  void main(void) {

Setup an infinite loop, using a while statement.

     while(TRUE){

Turn LED on and off by setting its pin low or high, with a delay between each switching.

        output_low(LED_0);
        delay_ms(500);
        output_high(LED_0);
        delay_ms(500);}
  }

Circuit Diagram

Digitaloutckt.jpg

Digital Output Ports Example

Sample Code

Circuit Diagram