×

用蜂鸣器制作多彩的LED流

消耗积分:0 | 格式:zip | 大小:0.32 MB | 2022-11-10

张亮

分享资料个

描述

介绍

大家好!今天我用蜂鸣器制作了一个多彩的 LED 流。对于想要制作一些很酷/有趣的东西的初学者来说,这是一个非常好的项目。该项目在流中使用 4 个 LED,一个红色、一个蓝色、一个黄色和一个绿色。下面是工作项目的视频。

第 1 步:收集必要的材料

首先,获得以下材料。

  • Arduino板
  • 有源蜂鸣器
  • 1 个红色 LED
  • 1 个蓝色 LED
  • 1 个绿色 LED
  • 1 个黄色 LED
  • 面包板
  • 一些跳线

在您转向硬件和软件之前,这里有一些教程可能会介绍所使用的组件。

第 2 步:硬件原理图

这是这个项目的示意图。LED 的数字 IO 线根据 LED 的颜色进行颜色编码。

poYBAGNsSOWAbHg1AAIi5WUWDEY469.png
如此多彩 :D
 

接下来,我们将进入编码部分。

第 3 步:编码软件

将此代码放入 Arduino IDE。

 //Digital Pins/Variables
int blueLED1 = 2; //Blue LED to Pin 2
int yellowLED2 = 3; //Yellow LED to Pin 3
int greenLED3 = 4; //Green LED to Pin 4
int redLED4 = 5; //Red LED to pin 5
int buzzer = 6; //Buzzer to pin 6
void setup() { //Setup Code
 pinMode(blueLED1, OUTPUT); //Blue LED as output
 pinMode(yellowLED2, OUTPUT); //Yellow LED as output
 pinMode(greenLED3, OUTPUT); //Green LED as output
 pinMode(redLED4, OUTPUT); //Red LED as output
 pinMode(buzzer, OUTPUT); //Buzzer as output
 digitalWrite(buzzer, HIGH); //Turn Buzzer on
}
void loop() { //Loop code
 digitalWrite(blueLED1, HIGH); //Blue led on
 delay(50); //wait for 1/25 of a second
 digitalWrite(blueLED1, LOW); //Blue led off
 digitalWrite(yellowLED2, HIGH); //Yellow led on
 delay(50); //wait for 1/25 of a second
 digitalWrite(yellowLED2, LOW); //Yellow led off
 digitalWrite(greenLED3, HIGH); //Green led on
 delay(50); //wait for 1/25 of a second
 digitalWrite(greenLED3, LOW); //Green led off
 digitalWrite(redLED4, HIGH); //Red led on
 delay(50); //wait for 1/25 of a second
 digitalWrite(redLED4, LOW); //Red led off
 digitalWrite(greenLED3, HIGH); //Green led on
 delay(50); //wait for 1/25 of a second
 digitalWrite(greenLED3, LOW); //Green led off
 digitalWrite(yellowLED2, HIGH); //Yellow led on
 delay(50); //wait for 1/25 of a second
 digitalWrite(yellowLED2, LOW); //Yellow led off
}

代码的解释在每一行。

以下是使用的功能的细分 -

  • int给出连接到数字引脚的组件的名称。例如,intblueLED1=2;表示蓝色 LED 连接到数字 IO 引脚 2。(参见硬件示意图)
  • pinMode将某物设置为输入或输出。例如,pinMode(blueLED1,OUTPUT);将蓝色 LED 设置为输出。
  • digitalWrite打开和关闭组件。例如,digitalWrite(buzzer,HIGH);打开蜂鸣器。
  • delay创建一个暂停并按时间过去,好像delay(1000);是 1 秒。因此,延迟(50);是 1/20 秒。(我认为我的数学是正确的:D)

上传代码,然后拍拍自己的后背。你刚刚完成了这个项目!如果某些东西不起作用,请在下面的部分中发表评论。

如果你喜欢这个项目,请点击这里查看我的其他项目。谢谢!


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'用蜂鸣器制作多彩的LED流',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);