希望可以帮到你
仿真原理图如下(proteus仿真工程文件可到本帖附件中下载)
单片机源程序如下:
- #include "stm32f10x.h"
- #include "Delay.h"
- #include "smg.h"
- //定义0~9十个数字的字型码表
- uint16_t table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
- uint16_t wei[]={0x0fe,0x0fd,0x0fb,0x0f7,0x0ef,0x0df,0xff,0xff}; //位码;
- uint8_t i;
- int main(void)
- {
- SMG_Init();
- while(1)
- {
- for(i=1;i<7;i++)
- {
- GPIO_Write(GPIOB,wei[i-1]);
- GPIO_Write(GPIOC,table[i]);
- // GPIO_SetBits(GPIOB,0x0ff);
- // GPIO_ResetBits(GPIOB,1<<(i-1));
- Delay(23);
- GPIO_Write(GPIOB,0x0ff);
- Delay(23);
- }
- }
- }
复制代码
所有资料51hei提供下载:
数码管动态显示.7z
(279.74 KB, 下载次数: 59)
|