首页 > 其他 > 详细

AVR第5课:蜂鸣器

时间:2015-01-21 13:16:18      阅读:234      评论:0      收藏:0      [点我收藏+]

下面是蜂鸣器的电路图。

技术分享


代码:蜂鸣器代码。

<span style="font-size:18px;">/*
*info:buzzer
*author:chenlu
*date:2014.11.20
*/

//input the head file so that the program can work normally
//iom16v---know the register
//macros---know the BIT(x)
#include<iom16v.h>
#include<macros.h>
//use those can make your study very conveninet
#define uint unsigned int
#define uchar unsigned char

//display methods 
void initSystem();
void delay();

//the main function
void main()
{
 	//init your system
	initSystem();
	while(1)
	{
	  	//start your function,and this is core solution
		PORTA = PORTA & (~BIT(1));
		delay();
		delay();
		delay();
		delay();
		PORTA = PORTA | BIT(1);
		delay();
		delay();
		delay();
		delay();
	}
}

//the method of init system
void initSystem()
{
 	//to make PA1 port output 
	DDRA = DDRA | BIT(1);
	//to make PA1 port output high level
	PORTA = PORTA | BIT(1);
}

//the sub method of delay
void delay()
{
 	uchar i,j;
 	for(i=0;i<250;i++)
	  for(j=0;j<250;j++);
}</span>
让蜂鸣器响一下,接着停一下,如此循环。

AVR第5课:蜂鸣器

原文:http://www.cnblogs.com/gcczhongduan/p/4238579.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!