完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
|
|
相关推荐
1个回答
|
|
【函数功能】: 8*8点阵动态显示,箭头左移。
**********************************************************************************/ #include “main.h” //定义变量 unsigned char temp = 0xfe; unsigned char KEY_NUM = 0; unsigned char Display_word[24] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x10,0x38,0x54,0x10,0x10,0x10,0x10,0x10, //箭头 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; //**************************************************** //主函数 //**************************************************** void main() { unsigned int i; unsigned char j,k; while(1) { for(j = 0 ; j < 16 ; j++) { for(i = 0 ; i < 50 ; i++) { temp = 0x7f; for(k = 0 ; k < 16 ; k++) //一个字母4BYTE { Send_Byte(temp); //列选择 Send_Byte(Display_word[j+k]); //数据 LEDARRAY_LAT = 1; //锁存数据 nop(); LEDARRAY_LAT = 0; _nop_(); temp = (temp>>1)|0x80; } } } } } //**************************************************** //发送一个字节数据 //**************************************************** void Send_Byte( unsigned char dat) { unsigned char i; LEDARRAY_CLK = 0; nop(); LEDARRAY_LAT = 0; nop(); for( i = 0 ; i < 8 ; i++ ) { if( dat&0x01 ) { LEDARRAY_DI = 1; } else { LEDARRAY_DI = 0; } LEDARRAY_CLK = 1; //上升沿发送数据 // _nop_(); LEDARRAY_CLK = 0; // _nop_(); dat >>= 1; } } |
|
|
|
只有小组成员才能发言,加入小组>>
3284 浏览 9 评论
2960 浏览 16 评论
3464 浏览 1 评论
9008 浏览 16 评论
4054 浏览 18 评论
1123浏览 3评论
577浏览 2评论
const uint16_t Tab[10]={0}; const uint16_t *p; p = Tab;//报错是怎么回事?
572浏览 2评论
用NUC131单片机UART3作为打印口,但printf没有输出东西是什么原因?
2305浏览 2评论
NUC980DK61YC启动随机性出现Err-DDR是为什么?
1862浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-27 22:13 , Processed in 1.260151 second(s), Total 79, Slave 59 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号