N76E003 学习一 点亮LED

//这3个头文件一般是必须的
#include "N76E003.h"
#include "SFR_Macro.h"
#include "Function_define.h"

// 延时
void Delay_short()
{
    int i;
    
    for (i = 0; i < 30000; i++) ;
}

void main (void) 
{
    //设置P12为准双向IO模式
    P12_Quasi_Mode;
    
    while(1)
    {
        P12 = 0;            //控制P12亮灭,低电平点亮
        Delay_short();    // 延时    
        P12 = 1;        
        Delay_short();                
    }    
}

新手刚学习,用最简单点亮LED,LED亮灭闪灯

你可能感兴趣的:(新塘单片机学习)