其他分享
首页 > 其他分享> > 001-点亮小灯

001-点亮小灯

作者:互联网

#include <reg52.h>   //包含特殊功能寄存器定义的头文件

sbit LED = P2^0;     //位地址声明,注意:sbit必须小写、P大写!

void main()
{	
    LED = 0;        //点亮小灯
    while (1);      //程序停止在这里,小灯长亮
}

标签:小灯,LED,点亮,长亮,001,sbit,include
来源: https://www.cnblogs.com/shihaoyang/p/14352113.html