普中
@祸根苗@
紧跟时代潮流的菜鸡大学生
展开
-
普中A2开发板红绿灯实验
```#include"reg52.h"typedef unsigned int u16;typedef unsigned char u8;sbit k3=P3^2;sbit k4=P3^3;sbit LSA=P2^2//定义位选;sbit LSB=P2^3;sbit LSC=P2^4;sbit red1=P2^0;//东西红sbit green1=P2^1;//东西绿s...原创 2019-12-10 19:08:07 · 1432 阅读 · 0 评论 -
普中开发板定时器中断
普中开发板的定时器中断C语言实现,间隔时间可能比一秒短,可以改变最下面的n值来修改间隔时间还有就是显示前六位后两位可以复制代码#include "reg52.h"sbit LSA=P2^2;sbit LSB=P2^3;sbit LSC=P2^4; typedef unsigned int u16; typedef unsigned char u8;void delay(u1...原创 2019-11-13 20:24:08 · 503 阅读 · 0 评论