×

定制设计的七段显示器

消耗积分:0 | 格式:zip | 大小:0.27 MB | 2022-08-01

分享资料个

PCB图如下:
poYBAGLacGiAKMgeAAE0m29gtWo411.png
poYBAGLacGuAH9WqAAKs2P2eHOI392.png
pYYBAGLacG2AA2bVAAB35hcdm7I673.jpg

成分

LED(封装:SMT 1206) × 60
电阻器(封装:SMT 1206) × 8
连接器 × 2
本局 × 1

描述

定制设计的七段显示器

Led 是设计中非常基本的组件,有时 LED 所做的工作不仅仅是指示。

在本文中,我们将了解如何使用 LED 构建定制设计的七段显示器。

市场上有很多不同的七段,但我选择建立自己的,因为我有时间并且周围有很多 LED。

我使用 Kicad 工具进行原理图和 PCB 设计。

这是完整的指南:

这是代码:

 

#define SEGMENT_A 5 
#define SEGMENT_B 6 
#define SEGMENT_C 7 
#define SEGMENT_D 8 
#define SEGMENT_E 9 
#define SEGMENT_F 10 
#define SEGMENT_G 11 
//#define SEGMENT_dp

#define SEG_SELECT_1 A3 
#define SEG_SELECT_2 A2 
#define SEG_SELECT_3 A1 
#define SEG_SELECT_4 A0

#define SEGMENT_SWITCH_DELAY 5 
int CounterPeriod = 1000 ;
unsigned  long time_now = 0 ;
/*
一个
 --
| |
 f|g |b
 --
| |
 电子| |c
 --
 d
 
字节 = hgfedcba
*/ 
uint8_t segmentdecode[] = { 0x3F , 0x06 , 0x5B , 0x4F , 0x66 , 0x6D , 0X7D , 0X07 , 0X7f , 0X6f , 0X77 , 0x7C , 0x39 , 0x5E , 0x79 , 0x71 };

无效 的DisplayNum (uint8_t num)
 {
digitalWrite(SEGMENT_A, (num & 0x01 )?HIGH:LOW);
digitalWrite(SEGMENT_B, (num & 0x02 )?HIGH:LOW);
digitalWrite(SEGMENT_C, (num & 0x04 )?HIGH:LOW);
digitalWrite(SEGMENT_D, (num & 0x08 )?HIGH:LOW);
digitalWrite(SEGMENT_E, (num & 0x10 )?HIGH:LOW);
digitalWrite(SEGMENT_F, (num & 0x20 )?HIGH:LOW);
digitalWrite(SEGMENT_G, (num & 0x40 )?HIGH:LOW);
}

void  setup ()  {
 // 把你的设置代码放在这里,运行一次:
pinMode(LED_BUILTIN,输出);
pinMode(SEGMENT_A,输出);

pinMode(SEGMENT_A,输出);
pinMode(SEGMENT_B,输出);
pinMode(SEGMENT_C,输出);
pinMode(SEGMENT_D,输出);
pinMode(SEGMENT_E,输出);
pinMode(SEGMENT_F,输出);
pinMode(SEGMENT_G,输出);
// pinMode(SEGMENT_dp,OUTPUT);

pinMode(SEG_SELECT_1,输出);
pinMode(SEG_SELECT_2,输出);
pinMode(SEG_SELECT_3,输出);
pinMode(SEG_SELECT_4,输出);
}

诠释我;
整数计数器= 0;
int convertInUnit[ 4 ];
//1234 
void  DisplayOnSegment ( int d)
 {
转换单位[ 0 ] = d/ 1000 ;
数字写入(SEG_SELECT_1,高);
数字写入(SEG_SELECT_2,低);
数字写入(SEG_SELECT_3,低);
数字写入(SEG_SELECT_4,低);
DisplayNum(segmentdecode[convertedInUnit[ 0 ]]);
延迟(SEGMENT_SWITCH_DELAY);
显示编号(0x00);//1

转换单位[ 1 ] = (d% 1000 )/ 100 ;
数字写入(SEG_SELECT_1,低);
数字写入(SEG_SELECT_2,高);
数字写入(SEG_SELECT_3,低);
数字写入(SEG_SELECT_4,低);
DisplayNum(segmentdecode[convertedInUnit[ 1 ]]);
延迟(SEGMENT_SWITCH_DELAY);
显示编号(0x00);//2

转换单位[ 2 ] = ((d% 1000 )% 100 )/ 10 ;
数字写入(SEG_SELECT_1,低);
数字写入(SEG_SELECT_2,低);
数字写入(SEG_SELECT_3,高);
数字写入(SEG_SELECT_4,低);
DisplayNum(segmentdecode[convertedInUnit[ 2 ]]);
延迟(SEGMENT_SWITCH_DELAY);
显示编号(0x00);//3

convertInUnit[ 3 ] = ((d% 1000 )% 100 )% 10 ;
数字写入(SEG_SELECT_1,低);
数字写入(SEG_SELECT_2,低);
数字写入(SEG_SELECT_3,低);
数字写入(SEG_SELECT_4,高);
DisplayNum(segmentdecode[convertedInUnit[ 3 ]]);
延迟(SEGMENT_SWITCH_DELAY);
显示编号(0x00);//4
}

void  loop ()  {
 if (millis() > time_now + CounterPeriod)
{
time_now = 毫秒();
计数器++;
如果(计数器 > 9999)
{
计数器 = 0 ;
}
}
 DisplayOnSegment(计数器);
}

 

这是 github 链接以获取更多详细信息:

https://github.com/stechiez/electronicsDIY/tree/master/CustomSevenSegmentDisplay

 

 

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

评论(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:'定制设计的七段显示器',//标题 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);