Chớp tắt Led PIC16F877A with XC8

6:48:00 AM
Trong bài này mình hướng dẫn các bạn làm chớp tắt Led ở PORTB các bạn tìm hiểu thêm và làm tưởng tự với PORTC và PORTD , PORTA và PORTE nha.

Ảnh mô phỏng protues.

Blink led pic16f877a xc8


Đây là code.

#include <xc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define _XTAL_FREQ 8000000

// CONFIG
#pragma config FOSC = HS        // Oscillator Selection bits (HS oscillator)
#pragma config WDTE = OFF       // Watchdog Timer Enable bit (WDT disabled)
#pragma config PWRTE = OFF      // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = OFF      // Brown-out Reset Enable bit (BOR disabled)
#pragma config LVP = OFF        // Low-Voltage (Single-Supply) In-Circuit Serial Programming Enable bit (RB3 is digital I/O, HV on MCLR must be used for programming)
#pragma config CPD = OFF        // Data EEPROM Memory Code Protection bit (Data EEPROM code protection off)
#pragma config WRT = OFF        // Flash Program Memory Write Enable bits (Write protection off; all program memory may be written to by EECON control)
#pragma config CP = OFF         // Flash Program Memory Code Protection bit (Code protection off)

void main(void)
{
    TRISB = 0X00;// PORTB OUTPUT
    PORTB = 0X00;// OFF LED
    while(1)
    {
        __delay_ms(100);
        RB0 = 1;
        __delay_ms(100);
        RB0 = 0;
    }
}

Các bạn có thể download Project ở link dưới.
http://www.mediafire.com/download/cc0rajlfed2jxgj/Ch%E1%BB%9Bp_t%E1%BA%AFt_Led.rar

Share this

Related Posts

Previous
Next Post »