Button - Led XC8

8:25:00 AM

- Trong bài này mình sẽ hướng dẫn các bạn lập trình giao tiếp giữa button và led. Các bạn có thể tham khảo code dưới đây.

- Ảnh mô phỏng protues.

button led pic16f877a xc8

- Đây là code chương trình.

#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)
{
    ADCON1 = 0X07;
    TRISAbits.TRISA0 = 1; // INPUT
    PORTAbits.RA0 = 0;
    TRISBbits.TRISB0 = 0;
    PORTBbits.RB0 = 0;
    while(1)
    {
        if(!RA0)  // kiểm tra nút nhấn
        {
            __delay_ms(100); 
            if(!RA0)  // 
            {
                RB0 = 1;
            }
        }
    }
}

Các bạn có thể download project ở link dưới.
http://www.mediafire.com/download/a2hsaeh0hk975vl/button_Led.rar

Share this

Related Posts

Previous
Next Post »