×

为新年倒计时制作的实时时钟

消耗积分:0 | 格式:zip | 大小:0.00 MB | 2023-06-19

分享资料个

描述

概述

这个令人惊叹的展示是作为 2019 年新年的倒计时而制作的,尽管它可用于任何活动的倒计时。使用这个项目可以轻松地炒作生日、假期、旅行和任何特殊事件的等待。

设备会自动在数据类型之间转换(例如,当剩余天数时显示天数和小时数,但在最后几秒占据整个屏幕)。在显示信息时,通过文本颜色显示平滑的 RGB 颜色循环。当事件到来时,会显示个性化消息和混合 RGB 背景。

由于带有独立电池的 RTC(实时时钟),该设备可以拔下插头并保持准确的时间。

实时时钟设置

为了正确使用 RTC,我们在项目中使用它之前先设置它的时间。为此,我们将使用 Arduino Uno 和 RTC。

首先,将 3 伏纽扣电池插入 RTC。

首先建立以下连接:

  • UNO 接地 -> RTC 接地
  • UNO 5V -> RTC VCC
  • UNO A5 -> RTC SCL
  • UNO A4 -> RTC SDA

完成后,从代码下链接的存储库中复制“Accurate RTC Clock setter”代码。将代码粘贴到 Arduino IDE 中的新草图中,然后单击 Sketch-> Include Library -> Manage Library。搜索并安装 RTClib 库。当我们在这里时,对 RGBmatrixPanel 库执行相同的操作。

在设置函数中是对 rtc.adjust() 方法的调用。这会将 rtc 时钟设置为草图编译时的当前日期和时间。

一个 TimeSpan() 属性被添加到这个调用中,它将当前时间增加几秒以补偿编译和上传所花费的时间。将草图上传到 Arduino Uno 并打开串行监视器。

然后,去time.gov以秒为单位获取准确的时间,将其与串行监视器进行比较并找出差异(如果有的话)。将此差异应用于 Time Span() 调用,直到时间非常接近完美同步。

RTC 时间同步后,您可以继续。

“构建”显示

以此为参考:

https://learn.adafruit.com/32x16-32x32-rgb-led-matrix/featured_products

首先,LED 矩阵耗电量很大,因此我们将从满足这一需求开始。切割并剥去电源矩阵电源线的末端,它应该有金属圈或标签。将电线插入并固定到母直流插孔中。确保电线的裸铜不相互连接,建议使用一些电工胶带来确保这一点。

现在,插入显示器以确保连接正常,只要没有火花,您就已成功为显示器供电。

现在,按照此处的说明找到显示器的输入。

然后,完成此处概述的布线以连接 Arduino。请注意,只要说明图像显示 D 引脚,就应将其替换为另一个接地引脚。

完成的电缆布线应如下所示:

 
poYBAGORg0aAYI6JAAB-hg-9TyI632.png
成品布线
 

RTC 的接线应保持不变。

编码显示

从描述中链接到的存储库中复制“Arduino 代码”并将其粘贴到您的 Aduino IDE 中。

上传前,更改倒计时事件的日期和时间信息以及事件发生后显示的消息。这些都可以在草图顶部的注释中找到。

也可以更改 RGBPulseSpeed 以加快或减慢 RGB 文本颜色循环。首先将其保持在 10 以下。

在上传代码之前,需要添加一些库。转到 Sketch->include library->manage library。然后导入 Adafruti GFX 库和 DS3231 库。

然后导入 Time 库,转到https://github.com/PaulStoffregen/Time,下载为 Zip 文件。在 Arduino IDE 中,转到 Sketch->include library->add zip library 并导入库。

更改这些变量并添加库后,将草图上传到 Arduino。

外壳

我还没有为这个设备创建一个正式的外壳,但我的建议是使用 LED 矩阵的包装来封装 Arduino、RTC 和额外的布线,然后使用提供的磁性螺丝将面板安装在顶部。

我还建议在矩阵上贴一张描图纸(或羊皮纸,虽然我没试过),因为它可以减弱刺激性的光线,并在一定程度上隐藏未使用的 LED。更多的纸张会产生更温暖但更暗淡的显示。

 
 
 
 
pYYBAGOSpjWASTjgAAwY7b2ufgE811.jpg
 
1 / 6这种廉价且简单的外壳可能不够优雅,但可以完成工作
 

利用

使用 5v USB 电源块(砖)为 Arduino 供电。我知道设备需要 2 个插头并占用整个插座很不方便,但这是最安全的构造方式。

倒计时将自动更改以最适合事件发生前的剩余时间。一旦事件发生并且您的熟人被信息和 RGB 动画惊呆了,只需拔下显示器的两根电源线即可。

如果倒计时关闭,请使用 RTC setter 代码更改它,直到它更准确为止,我无法强调准确计时的重要性。

未来

我希望创建更多动画以在事件发生时播放,例如烟花和生日蜡烛等特殊动画。我也在努力允许对消息进行更多自定义。这是一个快速组合的项目(在新年前夜开始),所以它肯定不是最光荣的代码。如果我有时间的话,我可能会致力于提高可读性和效率。

感谢您检查这个项目。如果您有任何意见、问题或疑虑,请随时与我联系。我会提供快速回复。

 


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

评论(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.lene-v.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:'为新年倒计时制作的实时时钟',//标题 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.lene-v.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);