164驅(qū)動(dòng)8位LED顯示 ICC程序
掃描二維碼
隨時(shí)隨地手機(jī)看文章
// 串行數(shù)碼管顯示 TLC549 AD轉(zhuǎn)換值
// 芯片 ATMEGA16L
// 時(shí)鐘 4MHz 內(nèi)部
// us延時(shí) j=1;while(--j); 一個(gè)循環(huán)6個(gè)周期,4M晶振,延時(shí)1.5us
#include
//164數(shù)據(jù)線置1
#define hc164_da
//164數(shù)據(jù)線清0
#define hc164_da
//164時(shí)鐘線置1
#define hc164_clk_SET PORTD |= 0x02
//164時(shí)鐘線清0
#define hc164_clk_CLR PORTD &= ~0x02
void delay_nms(unsigned int); //延時(shí) n ms
void hc164_send_byte (unsigned char byte); //164發(fā)送數(shù)據(jù)子程序
void leddisplay(void); // 數(shù)碼管顯示子程序
#define CLK549 4 // tlc549時(shí)鐘線, PD4輸出 unsigned char TLC549_ADC (void); //AD轉(zhuǎn)換子程序 unsigned char ledxs[8]={16,16,16,16,16,0,0,0}; // 數(shù)碼管顯示緩沖區(qū) CLK549_CLR;
#define DA
#define CS549 6 // tlc549片選線 ,PD6輸出
#define CLK549_SET PORTD |= 1<
#define CS549_SET PORTD |= 1<
// AD轉(zhuǎn)換值 百位 十位 個(gè)位
const unsigned char tab[]={0xb7,0x12,0x67,0x76,0xd2,0xf4,0xf5,0x16,0xf7,0xf6,0xd7,0xf1,0xa5,0x73,0xe5,0xc5,0,0xff};
//共陰極代碼 0-F, 全滅,全亮
void main(void)
{
unsigned char ad_value,temp,j;
j=1;while(--j); // 一個(gè)循環(huán)6個(gè)周期,4M晶振,延時(shí)1.5us
delay_nms(200);
PORTD &= ~(1<
DDRD = 0x53; // PD0、PD1(164驅(qū)動(dòng))置為輸出方式;
// PD4、PD6(tlc549時(shí)鐘和片選)置為輸出方式 ,PD5(tlc549數(shù)據(jù)線)置為輸入方式
while(1)
{
ad_value = TLC549_ADC(); //讀取AD轉(zhuǎn)換值
temp = ad_value/100;
ledxs[5] = temp; //求得AD轉(zhuǎn)換值百位
temp = ad_value%100;
ledxs[6] = temp/10; // 求得AD轉(zhuǎn)換值十位
ledxs[7] = temp%10; // 求得AD轉(zhuǎn)換值個(gè)位
leddisplay(); // 串行顯示
delay_nms(1000);
}
}
unsigned char TLC549_ADC(void)
{
unsigned char value=0;
unsigned char i,j;
CS549_SET;
j=2;while(--j);
CLK549_CLR;
j=4;while(--j);
CS549_CLR; //芯片起始
j=4;while(--j); //等待延時(shí)
for(i=0;i<8;i++) //輸入采樣轉(zhuǎn)換時(shí)鐘 (預(yù)采樣)
{
CLK549_SET;
j=2;while(--j);
CLK549_CLR;
j=2;while(--j);
}
CS549_SET; //開始轉(zhuǎn)換
j=20;while(--j); //等待轉(zhuǎn)換結(jié)束
j=4;while(--j);
CS549_CLR; //開始讀取轉(zhuǎn)換結(jié)果
j=4;while(--j);
for(i=0;i<8;i++) // 讀采樣值
{
CLK549_SET;
j=2;while(--j);
value<<=1;
//if((PIND&(1<
if( DA
CLK549_CLR;
j=2;while(--j);
}
CS549_SET;
j=20;while(--j);
return(value); //返回轉(zhuǎn)換結(jié)果
}
void leddisplay() // 數(shù)碼管顯示子程序
{
unsigned char i,j;
for(i=0;i<8;i++)
{
hc164_send_byte (tab[ledxs[i]]);
j=2;while(--j);
}
}
void hc164_send_byte (unsigned char byte) //164發(fā)送數(shù)據(jù)子程序
{
unsigned char i;
for(i=0;i<8;i++)
{
if( byte & ( 1 << i ))
hc164_da
else
hc164_da
hc164_clk_SET;
hc164_clk_CLR;
}
}
void delay_nms(unsigned int k) //延時(shí) n ms
{
while(k) //4M晶振,一個(gè)循環(huán)1ms
{
int i;
i=700;
while(i--);
k=k-1;
}
}