// 串行數(shù)碼管顯示 TLC1549 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ù)線(xiàn)置1
#define hc164_da
//164數(shù)據(jù)線(xiàn)清0
#define hc164_da
//164時(shí)鐘線(xiàn)置1
#define hc164_clk_SET PORTD |= 0x02
//164時(shí)鐘線(xiàn)清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 CLK1549 4 // tlc1549時(shí)鐘線(xiàn), PD4輸出 unsigned int TLC1549_ADC (void); //AD轉(zhuǎn)換子程序 unsigned char ledxs[8]={16,16,16,16,0,0,0,0}; // 數(shù)碼管顯示緩沖區(qū) CLK1549_CLR;
#define DA
#define CS1549 6 // tlc1549片選線(xiàn) ,PD6輸出
#define CLK1549_SET PORTD |= 1<
#define CS1549_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 j;
unsigned int ad_value;
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(tlc1549時(shí)鐘和片選)置為輸出方式 ,PD5(tlc1549數(shù)據(jù)線(xiàn))置為輸入方式
while(1)
{
ad_value = TLC1549_ADC(); // 讀取AD轉(zhuǎn)換值
ledxs[4] = ad_value/1000; // 求得AD轉(zhuǎn)換值千位
ledxs[5] = (ad_value%1000)/100; // 求得AD轉(zhuǎn)換值百位
ledxs[6] = (ad_value%100)/10; // 求得AD轉(zhuǎn)換值十位
ledxs[7] = (ad_value%100)%10; // 求得AD轉(zhuǎn)換值個(gè)位
leddisplay(); // 串行顯示
delay_nms(1000);
}
}
unsigned int TLC1549_ADC(void)
{
unsigned int value=0;
unsigned char i,j;
CS1549_SET;
j=2;while(--j);
CLK1549_CLR;
j=4;while(--j);
CS1549_CLR; //芯片起始
j=4;while(--j); //等待延時(shí)
for(i=0;i<10;i++) //輸入采樣轉(zhuǎn)換時(shí)鐘 (預(yù)采樣)
{
CLK1549_SET;
j=2;while(--j);
CLK1549_CLR;
j=2;while(--j);
}
CS1549_SET; //開(kāi)始轉(zhuǎn)換
j=20;while(--j); //等待轉(zhuǎn)換結(jié)束
j=4;while(--j);
CS1549_CLR; //開(kāi)始讀取轉(zhuǎn)換結(jié)果
j=4;while(--j);
for(i=0;i<10;i++) // 讀采樣值
{
CLK1549_SET;
j=2;while(--j);
value<<=1;
//if((PIND&(1<
if( DA
CLK1549_CLR;
j=2;while(--j);
}
CS1549_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;
}
}