自己修改电路图和代码,结果调试不成功?不知道为什么????电路图如下: 127 247 移动滑动变阻器没有软用???错误代码: 1 #include 2 #define uchar8 unsigned char 3 #define uint16 unsigned int 4 sbit ...
分类:
其他好文 时间:
2015-12-26 13:12:18
阅读次数:
198
由图知道 低电平 亮,高电平 灭控制第一个 LED1 亮灭程序代码,如下#include#define uchar8 unsigned char #define uint16 unsigned int sbit LED1=P1^0;/****************************...
分类:
其他好文 时间:
2015-12-24 00:12:54
阅读次数:
282
电路图:注意 为了省事 把 数码管串联的电阻省去了参考代码: 这里 检测按键并不好,抄的另外一篇日志,具体还要看书#include#include#define uchar8 unsigned char #define uint16 unsigned int sbit key1=P2^0;sbit....
分类:
其他好文 时间:
2015-12-23 22:41:36
阅读次数:
170
电路图:目的:K1 开始跑马灯 左->右K2 停止K3 跑马灯 右-> 左K4 流水灯参考程序:#include#include#define uchar8 unsigned char #define uint16 unsigned int #define LED P1 sbit k...
分类:
其他好文 时间:
2015-12-23 17:44:38
阅读次数:
265
单片机4*4按键数码管显示0-9#include#define KEY P1 //键盘#define SEG P0 //数码管sbit COM=P2^0; // 数码管comsbit OC = P2^1;//573锁存器 char code TAB[]={//0xc0,0xf9,0x...
分类:
其他好文 时间:
2015-11-29 22:51:59
阅读次数:
157
实现秒表计数功能,使用定时器和外部中断实现。8号按键代表计时开始/结束,C号按键代表重置为0,为了演示方便,这里上限定为15秒。
代码中有详细的注释:
#include
sbit WEI=P2^7;
sbit DUAN=P2^6;
sbit L1=P3^4;
unsigned char code dofly_DuanMa[11]={0x3f,0x06,0x5b,0x4f,0x66,0x...
分类:
编程语言 时间:
2015-11-27 17:45:58
阅读次数:
240
#include #define SEG P2 sbit P1_0 = P1^0; sbit P1_1 = P1^1; sbit P1_2 = P1^2; sbit P1_3 = P1^3; sbit P1_4 = P1^4; unsigned char code tab[]={0x3f...
分类:
其他好文 时间:
2015-11-10 21:13:15
阅读次数:
299
由图知道 低电平 亮,高电平 灭控制第一个 LED1 亮灭程序代码,如下 1 #include 2 #define uchar8 unsigned char 3 #define uint16 unsigned int 4 sbit LED1=P1^0; 5 /*************...
分类:
其他好文 时间:
2015-10-26 11:43:59
阅读次数:
201
1 #include ? 2 #define uchar unsigned char 3 #define uint unsigned int 4 //Led数码管数 5 sbit DIO = P2^0;//串行数据输入 6 sbit LRCLK = P2^1;//时钟脉冲信号——上升沿有效 7 .....
分类:
其他好文 时间:
2015-10-16 17:08:11
阅读次数:
229
数字显示00~59按钮1每次按下显示器值加一,按钮2每次按下显示器值减一,按钮3功能零,按钮4启动或停止计时器0#include#define uchar unsigned char#define uint unsigned intsbit key1=P3^4;sbit key2=P3^5;sbit...
分类:
其他好文 时间:
2015-09-29 21:57:52
阅读次数:
179