編輯語(yǔ):
芯片開放社區(qū)(OCC)面向廣大開發(fā)者推出應(yīng)用實(shí)戰(zhàn)系列內(nèi)容,通過分享開發(fā)者實(shí)戰(zhàn)開發(fā)案例,總結(jié)應(yīng)用開發(fā)經(jīng)驗(yàn),梳理開發(fā)中的常見問題及解決方案,為后續(xù)參與的開發(fā)者提供更多參考與借鑒。
本文是關(guān)于開發(fā)者 zhanghui基于BL606P-DVK開發(fā)板實(shí)戰(zhàn)開發(fā)的系列文章中的第四篇,主要介紹了LED數(shù)據(jù)管模塊TM1638驅(qū)動(dòng)的測(cè)試,后面還會(huì)持續(xù)更新該開發(fā)者的測(cè)評(píng)內(nèi)容,敬請(qǐng)期待!
01硬件連接
使用開發(fā)板的GPIO3,GPIO4,GPIO5連接TM1638模塊的STB,CLK和DIO。
02程序
2.1 tm1638.c
#include#include #include #include "app_main.h" #include #include #include #include "tm1638.h" gpio_dev_t gpio_stb = { GPIO_PIN_3, OUTPUT_PUSH_PULL, NULL }; gpio_dev_t gpio_clk= { GPIO_PIN_4, OUTPUT_PUSH_PULL, NULL }; gpio_dev_t gpio_dio = { GPIO_PIN_5, OUTPUT_PUSH_PULL, NULL }; uint8_t const tab[]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F,0x77,0x7C,0x39,0x5E,0x79,0x71}; uint8_t ds_log[8]={0x40,0x7c,0x38,0x7d,0x3f,0x7d,0x73,0x40}; void tm1638_WriteDat(uint8_t dat) { uint8_t i; for(i=0;i<8;i++) { clk_l(); if(dat&0X01) { dio_h(); } else { dio_l(); } dat>>=1; clk_h(); } } void tm1638_WriteCmd(uint8_t cmd) { stb_l(); tm1638_WriteDat(cmd); stb_h(); } void tm1638_Write_Addr(uint8_t addr,uint8_t dat) { tm1638_WriteCmd(0x44); stb_l(); tm1638_WriteDat(0xc0|addr); tm1638_WriteDat(dat); stb_h(); } void tm1638_Write_LED(uint8_t LED_flag) { uint8_t i; for(i=0;i<8;i++) { if(LED_flag&(1<
2.2 tm1638.h
#ifndef TM1638_H_ #define TM1638_H_ #define dio_l() hal_gpio_output_low(&gpio_dio) #define dio_h() hal_gpio_output_high(&gpio_dio) #define clk_l() hal_gpio_output_low(&gpio_clk) #define clk_h() hal_gpio_output_high(&gpio_clk) #define stb_l() hal_gpio_output_low(&gpio_stb) #define stb_h() hal_gpio_output_high(&gpio_stb) void init_tm1638(void); void disp_led(uint8_t *dat); void disp_log(void); #endif
2.3 main.c
/* * Copyright (C) 2015-2020 Alibaba Group Holding Limited */ #include#include #include #include "app_main.h" #include #include "led.h" #include "tm1638.h" int main(int argc, char *argv[]) { int i=0; uint8_t dispbuf[8]; uint32_t cnt=0; board_yoc_init(); init_led(); init_tm1638(); printf(" app start core clock %d........ ", soc_get_cur_cpu_freq()); disp_log(); aos_msleep(2000); //codec_output_init(); //codec_input_init(); //codec_loop_init(); for(i=0;i<8;i++) { dispbuf=0; } while(1) { i++; printf("zhanghui %d ",i); set_ledr(); clr_ledg(); clr_ledb(); aos_msleep(100); clr_ledr(); set_ledg(); clr_ledb(); aos_msleep(100); clr_ledr(); clr_ledg(); set_ledb(); aos_msleep(100); clr_ledr(); clr_ledg(); clr_ledb(); aos_msleep(100); if(cnt>999) { cnt=0; } cnt++; dispbuf[4]=cnt/1000; dispbuf[5]=(cnt%1000)/100; dispbuf[6]=((cnt%1000)%100)/10; dispbuf[7]=((cnt%1000)%100)%10; disp_led(dispbuf); } return 0; }
審核編輯:湯梓紅
-
led
+關(guān)注
關(guān)注
240文章
23062瀏覽量
657053 -
數(shù)碼管
+關(guān)注
關(guān)注
32文章
1873瀏覽量
90865 -
音視頻
+關(guān)注
關(guān)注
4文章
460瀏覽量
29840 -
開發(fā)板
+關(guān)注
關(guān)注
25文章
4896瀏覽量
97058 -
GPIO
+關(guān)注
關(guān)注
16文章
1188瀏覽量
51834
原文標(biāo)題:應(yīng)用速遞 | 博流BL606P音視頻開發(fā)板:(4)驅(qū)動(dòng)LED數(shù)碼管
文章出處:【微信號(hào):芯片開放社區(qū),微信公眾號(hào):芯片開放社區(qū)】歡迎添加關(guān)注!文章轉(zhuǎn)載請(qǐng)注明出處。
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論