一、前言
今天做 188 數(shù)碼管,查看了網(wǎng)上的一些例程,但是沒(méi)有好多用stm32做的,要么就是vip文章,難受,我自己做出了之后,還是發(fā)給大家做個(gè)參考學(xué)習(xí)
坑:STM32直接配置成輸出模式不可以,需要先配置成輸入再挨個(gè)配置輸出,因?yàn)檫@個(gè)問(wèn)題卡了一上午
二、簡(jiǎn)介
數(shù)碼管是一種常用的電子顯示設(shè)備,它可以顯示數(shù)字和一些基本的字符。在您提到的"188數(shù)碼管"這一表述中,并沒(méi)有特定的型號(hào)或標(biāo)準(zhǔn)定義,這里我將對(duì)數(shù)碼管的基本概念和常見(jiàn)類(lèi)型進(jìn)行介紹。
數(shù)碼管主要由發(fā)光二極管(LED)組成,根據(jù)段數(shù)的不同,通常分為七段數(shù)碼管和八段數(shù)碼管。七段數(shù)碼管由七個(gè)LED組成,可以顯示數(shù)字0到9以及一些字母。八段數(shù)碼管比七段數(shù)碼管多一個(gè)LED,主要用于顯示小數(shù)點(diǎn)。
以下是一些關(guān)于數(shù)碼管的關(guān)鍵信息:
- 結(jié)構(gòu):數(shù)碼管包含若干個(gè)LED,每個(gè)LED代表數(shù)碼管的一個(gè)“段”。通過(guò)控制這些段的亮與滅,可以組合成不同的數(shù)字或字符。
- 類(lèi)型:
- 七段數(shù)碼管:能夠顯示0-9的數(shù)字和一些基本的字符(如A-F)。
- 八段數(shù)碼管:在七段的基礎(chǔ)上增加了一個(gè)小數(shù)點(diǎn)顯示功能。
- 連接方式:
- 共陽(yáng)極數(shù)碼管:所有LED的正極(陽(yáng)極)連接在一起,通常接到電源正極。要點(diǎn)亮某個(gè)段,需要向?qū)?yīng)的負(fù)極(陰極)輸入低電平信號(hào)。
- 共陰極數(shù)碼管:所有LED的負(fù)極(陰極)連接在一起,通常接到電源負(fù)極。要點(diǎn)亮某個(gè)段,需要向?qū)?yīng)的正極(陽(yáng)極)輸入高電平信號(hào)。
- 顯示方式:
- 靜態(tài)顯示:每個(gè)數(shù)碼管的每個(gè)段都由單獨(dú)的I/O端口控制,顯示穩(wěn)定,但需要的I/O端口較多。
- 動(dòng)態(tài)顯示:通過(guò)快速切換顯示不同的數(shù)碼管,由于人眼的視覺(jué)暫留效應(yīng),看起來(lái)像是在同時(shí)顯示多個(gè)數(shù)字。
- 應(yīng)用:數(shù)碼管廣泛應(yīng)用于各種電子設(shè)備中,如計(jì)算器、電子鐘表、儀表板等,用于顯示數(shù)字或簡(jiǎn)單的字符信息。
三、資料獲取
關(guān)注微信公眾號(hào)--星之援工作室 發(fā)送關(guān)鍵字(188數(shù)碼管)
使用串口進(jìn)行控制 提供主要代碼 開(kāi)源,可自行移植
????
四、設(shè)備使用
實(shí)現(xiàn)效果
stm32驅(qū)動(dòng)188
參考
188數(shù)碼管驅(qū)動(dòng)程序(簡(jiǎn)潔)https://blog.csdn.net/weixin_42401119/article/details/120704663?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522a25b647e866ee69cb65cd1ec72c0edf8%2522%252C%2522scm%2522%253A%252220140713.130102334..%2522%257D&request_id=a25b647e866ee69cb65cd1ec72c0edf8&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduend~default-2-120704663-null-null.142^v102^pc_search_result_base9&utm_term=188%E6%95%B0%E7%A0%81%E7%AE%A1%E9%A9%B1%E5%8A%A8%E7%A8%8B%E5%BA%8F&spm=1018.2226.3001.4187
接線(xiàn)
PA1-PA5 以此類(lèi)推
四、代碼編寫(xiě)
有兩種寫(xiě)法,推薦第一種
方法一
188.c
函數(shù)實(shí)現(xiàn)過(guò)程
#include "stm32f10x.h"
#include "delay.h"
#include "188.h"
u8 hundreds = 4; //百位,0不顯示,1僅百分比,2百分比+供電,3-百分比+百位,4全部顯示
u8 tens = 4; //十位,10-F,11-不顯示
u8 unit = 2; //個(gè)位,10-F,11-不顯示
/*
* 百位,百分比,充電指示顯示
* BIT3 BIT2 BIT1 BIT0
* B1 C1 I J
* 0-不顯示 0 0 0 0 0x00
* 1-僅百分比 0 0 0 1 0x01
* 2-百分比+充電 0 0 1 1 0x03
* 3-百分比+百位 1 1 0 1 0x0D
* 4-全部顯示 1 1 1 1 0x0F
*/
u8 num_hund[5] = {0x00, 0x01, 0x03, 0x0D, 0x0F};
/*
* 十位顯示和個(gè)位顯示
* BIT7 BIT6 BIT5 BIT4 BIT3 BIT2 BIT1 BIT0
* xx A2/3 B2/3 C2/3 D2/3 E2/3 F2/3 G2/3
* 0 1 1 1 1 1 1 0 0x7E
* 1 0 1 1 0 0 0 0 0x60
* 2 1 1 0 1 1 0 1 0x6D
* 3 1 1 1 1 0 0 1 0x79
* 4 0 1 1 0 0 1 1 0x33
* 5 1 0 1 1 0 1 1 0x5B
* 6 1 0 1 1 1 1 1 0x5F
* 7 1 1 1 0 0 0 0 0x70
* 8 1 1 1 1 1 1 1 0x7F
* 9 1 1 1 1 0 1 1 0x7B
* F 1 0 0 0 1 1 1 0x47
* 不顯示 0 0 0 0 0 0 0 0x00
*/
u8 nums[12] = {0x7E, 0x30, 0x6D, 0x79, 0x33, 0x5B, 0x5F, 0x70, 0x7F, 0x7B, 0x47, 0x00};
void led_init()
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Pin =GPIO_PIN1|GPIO_PIN2 |GPIO_PIN3|GPIO_PIN4|GPIO_PIN5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
}
void clear()
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN1|GPIO_PIN2 |GPIO_PIN3|GPIO_PIN4|GPIO_PIN5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
}
void PIN1_H(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN1;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_SetBits(GPIOX, GPIO_PIN1);
}
void PIN1_L(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN1;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_ResetBits(GPIOX, GPIO_PIN1);
}
void PIN2_H(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN2;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_SetBits(GPIOX, GPIO_PIN2);
}
void PIN2_L(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN2;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_ResetBits(GPIOX, GPIO_PIN2);
}
void PIN3_H(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN3;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_SetBits(GPIOX, GPIO_PIN3);
}
void PIN3_L(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN3;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_ResetBits(GPIOX, GPIO_PIN3);
}
void PIN4_H(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN4;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_SetBits(GPIOX, GPIO_PIN4);
}
void PIN4_L(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN4;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_ResetBits(GPIOX, GPIO_PIN4);
}
void PIN5_H(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_SetBits(GPIOX, GPIO_PIN5);
}
void PIN5_L(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
GPIO_ResetBits(GPIOX, GPIO_PIN5);
}
/*
* | 1 | 2 | 3 | 4 | 5 拉高
* 1 | | B3 | D3 | F3 | G3
* 2 | A3 | | B2 | D2 | E2
* 3 | C3 | A2 | | C2 | F2
* 4 | E3 | C1 | B1 | | G2
* 5 | | I | J | |
* 拉低
*/
//1腳拉低,可顯示B3 D3 F3 G3
void Display_Scan1(void)
{
PIN1_L(); //拉低Pin1
if(nums[unit] & BIT5) //B3
PIN2_H();
if(nums[unit] & BIT3) //D3
PIN3_H();
if(nums[unit] & BIT1) //F3
PIN4_H();
if(nums[unit] & BIT0) //G3
PIN5_H();
}
//2腳拉低,可顯示A3 B2 D2 E2
void Display_Scan2(void)
{
PIN2_L();
if(nums[unit] & BIT6) //A3
PIN1_H();
if(nums[tens] & BIT5) //B2
PIN3_H();
if(nums[tens] & BIT3) //D2
PIN4_H();
if(nums[tens] & BIT2) //E2
PIN5_H();
}
//3腳拉低,可顯示C3 A2 C2 F2
void Display_Scan3(void)
{
PIN3_L();
if(nums[unit] & BIT4) //C3
PIN1_H();
if(nums[tens] & BIT6) //A2
PIN2_H();
if(nums[tens] & BIT4) //C2
PIN4_H();
if(nums[tens] & BIT1) //F2
PIN5_H();
}
//4腳拉低,可顯示E3 C1 B1 G2
void Display_Scan4(void)
{
PIN4_L();
if(nums[unit] & BIT2) //E3
PIN1_H();
if(num_hund[hundreds] & BIT2) //C1
PIN2_H();
if(num_hund[hundreds] & BIT3) //B1
PIN3_H();
if(nums[tens] & BIT0) //G2
PIN5_H();
}
//5腳拉低,可顯示 J(百分比) I(充電)
void Display_Scan5(void)
{
PIN5_L();
if(num_hund[hundreds] & BIT1) //I
PIN3_H();
if(num_hund[hundreds] & BIT0) //J
PIN2_H();
}
void Display(int sum)
{
static u8 scan_cnt;//逐行掃描
clear();//消影作用
unit=sum%10;
tens=sum/10%10;
hundreds=sum/100%10;
if(hundreds > 0)
{
hundreds = 4; // 顯示數(shù)據(jù)+圖標(biāo)
}else{
hundreds = 0; // 顯示數(shù)據(jù)
}
switch(scan_cnt)
{
case 0:Display_Scan1();scan_cnt++;break;
case 1:Display_Scan2();scan_cnt++;break;
case 2:Display_Scan3();scan_cnt++;break;
case 3:Display_Scan4();scan_cnt++;break;
case 4:Display_Scan5();scan_cnt=0;break;
default:scan_cnt=0;break;
}
}
188.h
函數(shù)定義
#ifndef __LED_H
#define __LED_H
#include "stm32f10x.h"
#define BIT0 0x01
#define BIT1 0x02
#define BIT2 0x04
#define BIT3 0x08
#define BIT4 0x10
#define BIT5 0x20
#define BIT6 0x40
#define BIT7 0x80
#define GPIOX GPIOA
#define GPIO_PIN1 GPIO_Pin_1
#define GPIO_PIN2 GPIO_Pin_2
#define GPIO_PIN3 GPIO_Pin_3
#define GPIO_PIN4 GPIO_Pin_4
#define GPIO_PIN5 GPIO_Pin_5
//#define PIN1_H() GPIO_SetBits(GPIOX, GPIO_PIN1)
//#define PIN1_L() GPIO_ResetBits(GPIOX, GPIO_PIN1)
//#define PIN2_H() GPIO_SetBits(GPIOX, GPIO_PIN2)
//#define PIN2_L() GPIO_ResetBits(GPIOX, GPIO_PIN2)
//#define PIN3_H() GPIO_SetBits(GPIOX, GPIO_PIN3)
//#define PIN3_L() GPIO_ResetBits(GPIOX, GPIO_PIN3)
//#define PIN4_H() GPIO_SetBits(GPIOX, GPIO_PIN4)
//#define PIN4_L() GPIO_ResetBits(GPIOX, GPIO_PIN4)
//
//#define PIN5_H() GPIO_SetBits(GPIOX, GPIO_PIN5)
//#define PIN5_L() GPIO_ResetBits(GPIOX, GPIO_PIN5)
void led_init(void);
void Display_tube(int sum);
void DIGITRON_ShowUnitSegCore( short highPinNum, short lowPinNum );
void clear(void);
void DIGITRON_ShowUnitSeg( short unit, char seg );
void Display_Scan1(void);
void Display_Scan2(void);
void Display_Scan3(void);
void Display_Scan4(void);
void Display_Scan5(void);
void Display(int sum);
void PIN1_H(void);
void PIN2_H(void);
void PIN3_H(void);
void PIN4_H(void);
void PIN5_H(void);
void PIN1_L(void);
void PIN2_L(void);
void PIN3_L(void);
void PIN4_L(void);
void PIN5_L(void);
#endif
方法二
188.c
函數(shù)實(shí)現(xiàn)過(guò)程
#include "stm32f10x.h"
#include "delay.h"
#include "188.h"
short GV_DigitronNumsMapSegs[10] = {0xFC, 0x60, 0xDA, 0xF2, 0x66, 0xB6, 0xBE, 0xE0, 0xFE, 0xE6};
// 初始
void led_init()
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Pin =GPIO_PIN1|GPIO_PIN2 |GPIO_PIN3|GPIO_PIN4|GPIO_PIN5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
}
// 重置
void clear()
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN1|GPIO_PIN2 |GPIO_PIN3|GPIO_PIN4|GPIO_PIN5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
LED1_OFF;
LED2_OFF;
LED3_OFF;
LED4_OFF;
LED5_OFF;
}
void DIGITRON_ShowUnitSegCore( short highPinNum, short lowPinNum )
{
// 重置
clear();
// 初始化為推挽輸出
switch(highPinNum)
{
case 1:
{
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_PIN1;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure);
break;}
case 2:{
GPIO_InitTypeDef GPIO_InitStructure1;
GPIO_InitStructure1.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure1.GPIO_Pin = GPIO_PIN2;
GPIO_InitStructure1.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure1);
break;}
case 3:{
GPIO_InitTypeDef GPIO_InitStructure2;
GPIO_InitStructure2.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure2.GPIO_Pin = GPIO_PIN3;
GPIO_InitStructure2.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure2);
break;}
case 4:{
GPIO_InitTypeDef GPIO_InitStructure3;
GPIO_InitStructure3.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure3.GPIO_Pin = GPIO_PIN4;
GPIO_InitStructure3.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure3);
break;}
case 5:{
GPIO_InitTypeDef GPIO_InitStructure4;
GPIO_InitStructure4.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure4.GPIO_Pin = GPIO_PIN5;
GPIO_InitStructure4.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure4);
break;}
default: break;
}
switch(lowPinNum)
{ case 1:{
GPIO_InitTypeDef GPIO_InitStructure6;
GPIO_InitStructure6.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure6.GPIO_Pin = GPIO_PIN1;
GPIO_InitStructure6.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure6);
break;}
case 2:{
GPIO_InitTypeDef GPIO_InitStructure7;
GPIO_InitStructure7.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure7.GPIO_Pin = GPIO_PIN2;
GPIO_InitStructure7.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure7);
break;}
case 3:{
GPIO_InitTypeDef GPIO_InitStructure8;
GPIO_InitStructure8.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure8.GPIO_Pin = GPIO_PIN3;
GPIO_InitStructure8.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure8);
break;}
case 4:{
GPIO_InitTypeDef GPIO_InitStructure9;
GPIO_InitStructure9.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure9.GPIO_Pin = GPIO_PIN4;
GPIO_InitStructure9.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructure9);
break;}
case 5:{
GPIO_InitTypeDef GPIO_InitStructurea;
GPIO_InitStructurea.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructurea.GPIO_Pin = GPIO_PIN5;
GPIO_InitStructurea.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOX, &GPIO_InitStructurea);
break;}
default: break;
}
// 設(shè)置高低電平
switch(lowPinNum)
{
case 1: LED1_ON;
break;
case 2: LED2_ON;
break;
case 3: LED3_ON;
break;
case 4: LED4_ON;
break;
case 5: LED5_ON;
break;
default: break;
}
switch(highPinNum)
{
case 1: LED1_OFF;
break;
case 2: LED2_OFF;
break;
case 3: LED3_OFF;
break;
case 4: LED4_OFF;
break;
case 5: LED5_OFF;
break;
default: break;
}
delay_us(60);
}
void DIGITRON_ShowUnitSeg( short unit, char seg )
{
if( unit == 1 ){
if( seg == 'B' ) DIGITRON_ShowUnitSegCore(4,3);
if( seg == 'C' ) DIGITRON_ShowUnitSegCore(4,2);
}
if( unit == 2 ){
if( seg == 'A' ) DIGITRON_ShowUnitSegCore(3,2);
if( seg == 'B' ) DIGITRON_ShowUnitSegCore(2,3);
if( seg == 'C' ) DIGITRON_ShowUnitSegCore(3,4);
if( seg == 'D' ) DIGITRON_ShowUnitSegCore(2,4);
if( seg == 'E' ) DIGITRON_ShowUnitSegCore(2,5);
if( seg == 'F' ) DIGITRON_ShowUnitSegCore(3,5);
if( seg == 'G' ) DIGITRON_ShowUnitSegCore(4,5);
}
if( unit == 3 ){
if( seg == 'A' ) DIGITRON_ShowUnitSegCore(2,1);
if( seg == 'B' ) DIGITRON_ShowUnitSegCore(1,2);
if( seg == 'C' ) DIGITRON_ShowUnitSegCore(3,1);
if( seg == 'D' ) DIGITRON_ShowUnitSegCore(1,3);
if( seg == 'E' ) DIGITRON_ShowUnitSegCore(4,1);
if( seg == 'F' ) DIGITRON_ShowUnitSegCore(1,4);
if( seg == 'G' ) DIGITRON_ShowUnitSegCore(1,5);
}
}
void DIGITRON_ShowUnitNum( short unit, short number)
{
// 初始化
short numSegs = GV_DigitronNumsMapSegs[number];
// 顯示小數(shù)點(diǎn)
// 顯示數(shù)字
if( (numSegs&0x80) == 0x80 ) DIGITRON_ShowUnitSeg(unit, 'A'); // & 1000 0000
if( (numSegs&0x40) == 0x40 ) DIGITRON_ShowUnitSeg(unit, 'B'); // & 0100 0000
if( (numSegs&0x20) == 0x20 ) DIGITRON_ShowUnitSeg(unit, 'C'); // & 0010 0000
if( (numSegs&0x10) == 0x10 ) DIGITRON_ShowUnitSeg(unit, 'D'); // & 0001 0000
if( (numSegs&0x08) == 0x08 ) DIGITRON_ShowUnitSeg(unit, 'F'); // & 0000 0100
if( (numSegs&0x02) == 0x02 ) DIGITRON_ShowUnitSeg(unit, 'E'); // & 0000 1000
if( (numSegs&0x04) == 0x04 ) DIGITRON_ShowUnitSeg(unit, 'G'); // & 0000 0010
}
void Display_tube(int sum)
{
int a,b,c;
clear();
c=sum%10;
b=sum/10%10;
a=sum/100%10;
if(a==1)
{DIGITRON_ShowUnitNum( 1, a);
}
else
{
}
DIGITRON_ShowUnitNum( 2, b);
DIGITRON_ShowUnitNum( 3, c);
}
188.h
函數(shù)定義
#ifndef __LED_H
#define __LED_H
#include "stm32f10x.h"
#define GPIOX GPIOA
#define GPIO_PIN1 GPIO_Pin_1
#define GPIO_PIN2 GPIO_Pin_2
#define GPIO_PIN3 GPIO_Pin_3
#define GPIO_PIN4 GPIO_Pin_4
#define GPIO_PIN5 GPIO_Pin_5
#define LED1_ON GPIO_SetBits(GPIOX, GPIO_PIN1)
#define LED1_OFF GPIO_ResetBits(GPIOX, GPIO_PIN1)
#define LED2_ON GPIO_SetBits(GPIOX, GPIO_PIN2)
#define LED2_OFF GPIO_ResetBits(GPIOX, GPIO_PIN2)
#define LED3_ON GPIO_SetBits(GPIOX, GPIO_PIN3)
#define LED3_OFF GPIO_ResetBits(GPIOX, GPIO_PIN3)
#define LED4_ON GPIO_SetBits(GPIOX, GPIO_PIN4)
#define LED4_OFF GPIO_ResetBits(GPIOX, GPIO_PIN4)
#define LED5_ON GPIO_SetBits(GPIOX, GPIO_PIN5)
#define LED5_OFF GPIO_ResetBits(GPIOX, GPIO_PIN5)
void led_init(void);
void Display_tube(int sum);
void DIGITRON_ShowUnitSegCore( short highPinNum, short lowPinNum );
void clear(void);
void DIGITRON_ShowUnitSeg( short unit, char seg );
#endif
main
/************************************************************************************
*************************************************************************************/
#include "stm32f10x.h"
#include "delay.h"
#include "188.h"
#include "usart.h"
u8 unit ; //十位,10-F,11-不顯示
u16 time;
int main()
{
delay_init(); // 延時(shí)函數(shù)初始化
uart_init(115200); // 日志打印串口
// 初始化屏幕
led_init();
while (1) {
time++;
if(time % 50 ==0 ){
if( unit < 100){
unit ++;
}else{
unit= 0;
}
//printf("%dn",unit);
}
Display_tube(unit);
delay_ms(2);
}
}
五、參考
188數(shù)碼管驅(qū)動(dòng)程序https://blog.csdn.net/qq_57568928/article/details/141928923?spm=1001.2101.3001.6650.3&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ECtr-3-141928923-blog-120704663.235%5Ev43%5Epc_blog_bottom_relevance_base1&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7ECtr-3-141928923-blog-120704663.235%5Ev43%5Epc_blog_bottom_relevance_base1&utm_relevant_index=5
聯(lián)系方式 微信號(hào):13648103287