×

使用Swift语言一个一个地闪烁RGB LED

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

殷谷光

分享资料个

描述

成功让一个 LED 工作后,为什么不尝试更多的 LED?在这个项目中,让我们构建威廉希尔官方网站 并使 LED 一个接一个地闪烁。

第 1 步:您需要什么

您需要的零件都包含在这个Maker 套件中。

  • SwiftIO 板
  • 面包板
  • 红色、绿色和蓝色 LED
  • 电阻器
  • 跳线

第二步:关于LED

 
 
 
poYBAGNsRfKAa85_AABGGl3ziD0855.png
 
1 / 2
 

发光二极管,简称LED,是一种可以发光的二极管。它有一个正极(阳极)和一个负极(阴极)。那么如何识别两条腿呢?好吧,长腿是正的,短腿是负的。电流只能沿一个方向流动,从正极流向负极。因此,要点亮它,您需要将正极连接到电流源。

LED有两种连接方式:

  • 将 LED 连接到电源和数字引脚。由于电流总是从高电压流向低电压,如果管脚输出高电压,则LED两端没有电压差,所以LED熄灭。只有当引脚输出低电压时,电流才能从电源流到引脚,LED 才会亮。这就是板载 LED 的工作原理。
  • 将 LED 连接到数字引脚和接地。如果引脚输出高电压,电流从引脚流向地,LED 将亮起。如果它输出低电压,则 LED 熄灭。这是您将在此项目中使用的方式。

第 3 步:威廉希尔官方网站

 
 
 
pYYBAGNsRfaAKrfZAAC4o4Q8FSA491.png
 
1 / 4
 

让我们先了解一下面包板你可以在里面找到很多洞。实际上,除了中间的间隙之外,每个上或下五个插座都垂直短接,如上图所示。因此,您可以轻松地将组件插入这些孔中。

  • 在不同的列上放置三个 LED。
  • 每个 LED的长腿连接到一个数字引脚:红色 LED 连接到 D16,绿色 LED 连接到 D17,蓝色 LED 连接到 D18。
  • 短腿连接到一个 1k 欧姆电阻连接到引脚 GND。

注意:电阻的阻值不定,只要大于耐电压的最低要求即可。而LED的亮度是由电阻决定的:电阻越大,LED就越暗。

顺便说一句,您通常会发现红色跳线用于电源,黑色线用于接地。

第 4 步:代码

/* Import the SwiftIO library to use everything in it. */
import SwiftIO

/* Import the board library to use the Id of the specific board. */
import SwiftIOBoard

/* Initialize three LEDs. */
let red = DigitalOut(Id.D16)
let green = DigitalOut(Id.D17)
let blue = DigitalOut(Id.D18)

/* The code here will run all the time. */
while true {

    /* Turn on red LED for 1 second, then off. */
    red.write(true)
    sleep(ms: 1000)
    red.write(false)

    /* Turn on green LED for 1 second, then off. */
    green.write(true)
    sleep(ms: 1000)
    green.write(false)

    /* Turn on blue LED for 1 second, then off. */
    blue.high()
    sleep(ms: 1000)
    blue.low()
}

第 5 步:代码分析

import SwiftIO
import SwiftIOBoard

首先,导入两个库:SwiftIOSwiftIOBoard以使用它。用于控制SwiftIO板的输入输出。定义板的引脚名称。SwiftIOSwiftIOBoard

let red = DigitalOut(Id.D16)
let green = DigitalOut(Id.D17)
let blue = DigitalOut(Id.D18)

该类允许您将引脚设置为输出高电压或低电压。您需要初始化 LED 连接的三个输出引脚:D16、D17 和 D18。只有在初始化之后,你才能改变它们的状态。DigitalOut

while true {
}

要让 LED 反复闪烁,需要在死循环中编写代码除非您关闭威廉希尔官方网站 板,否则其中的代码可以一直运行。while true

red.write(true)
sleep(ms: 1000)
red.write(false)

在循环中,您将分别设置三个 LED。操作类似。让我们看一下红色 LED。

首先,采用write(_:)设置引脚输出高电压的方法点亮LED。由于三个 LED 中的每一个都连接到数字引脚和接地,因此当您施加高电压时它们会亮起。1s 后,通过施加低电压关闭 LED。所以LED会亮1s然后熄灭。

下一个 LED 立即亮起并重复上述过程。因此三个 LED 轮流闪烁。

第 6 步:运行项目

当代码下载到您的威廉希尔官方网站 板时,红色、绿色和蓝色 LED 会一个接一个地闪烁。每个 LED 将亮 1 秒。


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

评论(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:'使用Swift语言一个一个地闪烁RGB 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);