代码_两位数码管.doc

  1. 1、本文档共3页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
代码_两位数码管

// Target : M8 // Crystal: 8.0000Mhz #include iom8v.h #include macros.h #define SCK_H() PORTD |= ( 1PD4 ) #define SCK_L() PORTD = ~( 1PD4 ) #define DAT_H() PORTD |= ( 1PD3 ) #define DAT_L() PORTD = ~( 1PD3 ) #define LAT_H() PORTD |= ( 1PD2 ) #define LAT_L() PORTD = ~( 1PD2 ) //1ms #define DLY1MS 960 void port_init(void) { PORTB = 0x00; DDRB = 0xff; PORTC = 0x00; //m103 output only DDRC = 0xff; PORTD = 0x00; DDRD = 0xff; PORTD = ~(1PD0); // 打开HC595 输出使能端 PORTD |= (1PD1); // 关闭输出清0 } //call this routine to initialize all peripherals void init_devices(void) { //stop errant interrupts until set up CLI(); //disable all interrupts port_init(); MCUCR = 0x00; GICR = 0x00; TIMSK = 0x00; //timer interrupt sources SEI(); //re-enable interrupts //all peripherals are now initialized } /************************************ 用 途:微秒级延时程序 Taget :mega8 crystal :8M 介 绍:在8M的晶振上进行us级的延时 入口参数: *************************************/ void delay_us(int time) { do { time--; } while (time 1); } //**************************************************************** // 移位输出一个字节8位数据 HC595 //**************************************************************** void Move_Data( unsigned char aByte ) { unsigned char i; LAT_L(); for(i=0;i8;i++) { SCK_L(); if(aByte0x80) { DAT_H(); } else { DAT_L(); } SCK_H(); aByte = 1;// 数码管八段笔画hgfedcba 对应一个字节的d7,d6,d5,d4,d3,d2,d1,d0; 1-暗,0-亮 所以后面要取反 } SCK_L(); LAT_H(); _NOP(); _NOP(); LAT_L(); } /************************************ 用 途:两位数码管显示一个数 Taget :mega8 crystal :8M 介 绍:共阳数码管 1-PC1(片选) 2-PC0 ----- a-PB0(数据) b-PB1 ... h-PB6 DP-PB7 入口参数:要显示的数,十进制表示 *************************************/ void show_2_digit(unsigned char digi) {unsigned char num[16]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71}; unsigned char i; PORTC=0;//关片选 i

您可能关注的文档

文档评论(0)

hhuiws1482 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:5024214302000003

1亿VIP精品文档

相关文档