会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
zhaoyang16
博客园
首页
新随笔
联系
订阅
管理
2015年4月19日
单片机---控制蜂鸣器以0.5s的周期工作
摘要: 1 /*采用定时的方法让继电器切换,切换频率大约为0.5s*/ 2 #include //52系列单片机头文件 3 sbit Relay = P3^3; //声明单片机P3口的第4位 4 5 /*定时器T0初始化:主要是一些寄存器的配置 6 定时时间是0.25ms...
阅读全文
posted @ 2015-04-19 19:37 zhaoyang16
阅读(658)
评论(0)
推荐(0)
编辑
2015年3月23日
数码管显示数字12345678
摘要: #include#includesbit DIG_DATA=P0^2;sbit DIG_SHCP=P0^4;sbit DIG_STCP=P2^3;code unsigned char Segment[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x...
阅读全文
posted @ 2015-03-23 17:53 zhaoyang16
阅读(875)
评论(0)
推荐(0)
编辑
数码管显示数字1
摘要: #include#includesbit DIG_DATA=P0^2;sbit DIG_SHCP=P0^4;sbit DIG_STCP=P2^3;void main(void){ unsigned char i,SegmentByte,SelectByte; SegmentByte=0xf9; ...
阅读全文
posted @ 2015-03-23 17:51 zhaoyang16
阅读(605)
评论(0)
推荐(0)
编辑
2015年3月22日
独立按键点亮LED
摘要: #includesbit key_left=P1^0;sbit led4=P1^4;void main(void){ unsigned char KeyStep=0; unsigned short int KeyDelay=0; while(1) { switch(KeyStep) ...
阅读全文
posted @ 2015-03-22 22:37 zhaoyang16
阅读(179)
评论(0)
推荐(0)
编辑
蜂鸣器发声
摘要: #includesbit BUZZER=P3^4;void main(void){ unsigned long int dly=100000; BUZZER=1; while(dly--); BUZZER=0; while(1) { }}
阅读全文
posted @ 2015-03-22 22:36 zhaoyang16
阅读(173)
评论(0)
推荐(0)
编辑
电磁继电器切换
摘要: #includesbit relay=P3^3;void delay(void){ unsigned int i,j; for(i=0;i<100;i++) { for(j=0;j<100;j++) { } }}void main(void)...
阅读全文
posted @ 2015-03-22 22:34 zhaoyang16
阅读(138)
评论(0)
推荐(0)
编辑
单片机——间隔点亮LED
摘要: 1 #include2 void main(void)3 {4 P1=0xaa;5 while(1)6 {7 }8 }
阅读全文
posted @ 2015-03-22 22:32 zhaoyang16
阅读(449)
评论(0)
推荐(0)
编辑
2014年3月23日
二级程序设计
摘要: #includeint main(void){ int a,b,c,m,n,p; printf("enter m and n:"); scanf("%d%d",&m,&n); a=m; b=n; c=a%b; while(c!=0){ m=n;...
阅读全文
posted @ 2014-03-23 12:07 zhaoyang16
阅读(457)
评论(0)
推荐(0)
编辑
2013年12月19日
复习题
摘要: 题目描述有一个圆,圆心坐标是(0,0),半径r=4.5,任意输入一个点的坐标(x,y),判断这个点是在圆内,圆周上,还是在圆外。输入要求两个浮点数x,y输出要求如果在圆内,输出in如果在圆外,输出out如果在圆上,输出on假如输入1.0 1.0应当输出in#include#includeint cm...
阅读全文
posted @ 2013-12-19 09:11 zhaoyang16
阅读(1540)
评论(0)
推荐(0)
编辑
2013年11月21日
实验11-测试
摘要: #includestruct student{ int age; char name[10];};struct student stud[4];int main(void){ int i,j,index; struct student temp; printf("\nInput the student's age,name:\n"); for(i=0;i=0;i--) printf("%d %s\n",stud[i].age,stud[i].name); return 0;}
阅读全文
posted @ 2013-11-21 09:59 zhaoyang16
阅读(101)
评论(0)
推荐(0)
编辑
下一页
公告