很简单的小玩意
2
|
|
|
|
下来看看
|
|
|
|
|
下来学习一下,感谢分享!!!!
|
|
|
|
|
謝謝你的分享........ .............. ........
|
|
|
|
|
/* 名称:继电器控制照明设备
说明:按下 K1 灯点亮,再次
按下时灯熄灭
*/
#include
#define uchar unsigned char
#define uint unsigned int
***it K1=P1^0;
***it RELAY=P2^4;
//延时
void DelayMS(uint ms)
{
uchar t;
while(ms--)for(t=0;t<120;t++
}
//主程序
void main()
{
P1=0xff;
RELAY=1;
while(1)
{
if(K1==0)
{
while(K1==0);
RELAY=~RELAY;
DelayMS(20);
}
}
}
proteus仿真图:
|
|
|
|
|