AVR ATMega16在段式液晶上显示红外码
扫描二维码
随时随地手机看文章
硬件:ATMega16(8MRC)+HT1621+一体化红外接收头
思路:红外解码采用中断捕捉方式(NEC编码),显示用液晶驱动HT1261
程序如下(WinAVR GCC环境编译):
#include
#include
#include
#include
#include
#define HT1621_BIAS 0x29 // 设置LCD偏压发生器为1/3偏压,4个公共端
#define HT1621_RC256K 0x18 // 设置系统时钟源为片内RC(256KHz)振荡器
#define HT1621_SYSTEN 0x01 // 打开系统时钟振荡器
#define HT1621_SYSDIS 0x00 // 停止系统时钟振荡器和LCD偏压发生器
#define HT1621_LCDON 0x03 // 打开LCD偏压振荡器
#define HT1621_LCDOFF 0x02 // 关闭LCD偏压发生器
#define HT1621_RAMSIZE0x10 // LCD显示RAM大小16个字节
#define HT1621_TOPT0xE0
#defineHT1621_CS_SETPORTC|=(1< unsigned char lcd_dis_buf[16] ={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; //************************************************************** //*****************************************************************
unsigned char capt_vect_cnt=0;
unsigned char ir_rx_data_flag=0;
unsigned char ir_rx_complete_flag=0;
unsigned char bitcnt=0;
unsigned int ir_plus[33];
unsigned int user_code=0;
unsigned int operate_code=0;
const unsigned char lcd7_code[] PROGMEM=
{
0xF5,// 0
0x05,// 1
0xB6,// 2
0x97,// 3
0x47,// 4
0xD3,// 5
0xF3,// 6
0x85,// 7
0xF7,// 8
0xD7,// 9
0xE7,// A
0x73,// B
0xF0,// C
0x37,// D
0xF2,// E
0xE2,// F
0x70,// L
0x67,// H
0xE0,// R
0x23// n
};
//**************************************************************
//*名称:void ht1621_send_bit_h(unsigned char nbit,n) *
//*功能:向ht1621发送n位bit,先发送高位 *
//*参数:nbit 送的bit位 len 发送bit的位数 *
//*返回:无 *
//**************************************************************
void ht1621_send_bit_h(unsigned char nbit,unsigned char len)
{
unsigned char temp;
for(temp=0;temp
HT1621_WR_CLR;
if((nbit&0x80)==0x80)
{
HT1621_DATA_SET;
}
else
{
HT1621_DATA_CLR;
}
HT1621_WR_SET;
nbit<<=1;
}
}
//**************************************************************
//*名称:void ht1621_send_bit_h(unsigned char nbit,n) *
//*功能:向ht1621发送n位bit,先发送低位 *
//*参数:nbit 送的bit位 len 发送bit的位数 *
//*返回:无 *
//**************************************************************
void ht1621_send_bit_l(unsigned char nbit,unsigned char len)
{
unsigned char temp;
for(temp=0;temp
HT1621_WR_CLR;
if((nbit&0x01)==0x01)
{
HT1621_DATA_SET;
}
else
{
HT1621_DATA_CLR;
}
HT1621_WR_SET;
nbit>>=1;
}
}
//**************************************************************
//*名称:void ht1621_send_cmd(unsigned char cmd) *
//*功能:向ht1621发送命令 *
//*参数:cmd 发送的命令 *
//*返回:无 *
//**************************************************************
void ht1621_send_cmd(unsigned char cmd)
{
HT1621_CS_CLR;
ht1621_send_bit_h(0x80,3); // 发送命令模式100
ht1621_send_bit_h(cmd,9); // 发送命令
HT1621_CS_SET;
}
//*名称:void ht1621_write_byte(unsigned char byte,address) *
//*功能:向ht1621写显示数据 *
//*参数:byte 数据字节 address 数据地址 *
//*返回:无 *
//**************************************************************
void ht1621_write_byte(unsigned char byte,unsigned char address)
{
address<<=2;
HT1621_CS_CLR;
HT1621_WR_CLR;
ht1621_send_bit_h(0xA0,3); // 发送写数据模式101
ht1621_send_bit_h(address<<2,6); // 发送地址
ht1621_send_bit_l(byte,4); // 发送数据字节
HT1621_CS_SET;HT1621_WR_SET;
}
//*名称:void ht1621_write_string(unsigned char *prt,address,len) *
//*功能:向ht1621写入一组显示数据 *
//*参数:prt 指向字节数组的指针 *
//* address 数据首地址 *
//* len 数组的长度 *
//*返回:无 *
//*****************************************************************
void ht1621_write_string(unsigned char *prt,unsigned char address,unsigned char len)
{
unsigned char temp;
HT1621_CS_CLR;
ht1621_send_bit_h(0xA0,3); //发送写数据模式101
ht1621_send_bit_h(address<<2,6); //发送地址
if((len+address)>HT1621_RAMSIZE)
{
len=HT1621_RAMSIZE-address;
}
for(temp=0;temp
ht1621_send_bit_l(*prt++,8); //发送数据字节
}
HT1621_CS_SET;
}
//***********************************************************
//*名称:void ht1621_int() *
//*功能:ht1621初始化 *
//*参数:无 *
//*返回:无 *
//***********************************************************
void ht1621_int(void)
{
ht1621_send_cmd(HT1621_BIAS); // 设置LCD偏压发生器为1/3偏压,4个公共端
ht1621_send_cmd(HT1621_SYSTEN); // 打开系统时钟振荡器
ht1621_send_cmd(HT1621_LCDON); // 打开LCD偏压振荡器
ht1621_send_cmd(HT1621_RC256K); // 启动内部256KRC 振荡器
}
//***********************************************************************************
//*名称: delay_nus(unsigned int nms) *
//*功能: 延时nms *
//*参数: 无 *
//*返回: 无 *
//***********************************************************************************
void delay_nus(unsigned int nms)
{
while(nms--)
{
_delay_loop_2(2);
}
}