新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 1602 AVR單片機(jī)版 報(bào)警指示功能

1602 AVR單片機(jī)版 報(bào)警指示功能

作者: 時(shí)間:2016-11-30 來(lái)源:網(wǎng)絡(luò) 收藏
使用的是ATMEGA16芯片
功能說(shuō)明:正常狀態(tài)下,8個(gè)LED不停閃爍,1602顯示normal indication指示
報(bào)警狀態(tài)下, 8個(gè)LED全發(fā)亮不閃爍,1602顯示alarm報(bào)警,只有按復(fù)位按鈕才能解除報(bào)警.
alarm狀態(tài)時(shí),由于PB口的低3位和,1602時(shí)能,讀寫(xiě),數(shù)據(jù)指令寄存器選擇位復(fù)用,所以有點(diǎn)暗.
#include
#include
#define uchar unsigned char
#define uint unsigned int
#define RS1 PORTB_Bit0=1 //數(shù)據(jù)指令寄存器選擇
#define RS0 PORTB_Bit0=0
#define RW1 PORTB_Bit1=1 //讀寫(xiě)選擇
#define RW0 PORTB_Bit1=0
#define EN1 PORTB_Bit2=1 //讀寫(xiě)時(shí)能
#define EN0 PORTB_Bit2=0
#define DATAPORT PORTA //1602數(shù)據(jù)口
#define busy 0x80 //繁忙標(biāo)志
#include "ku.h" //調(diào)用函數(shù)庫(kù)
//-------------------------------------------
uchar alarm[]={"alarm "}; //報(bào)警字符串
uchar normal[]={"normal"}; //正常字符串
uchar indication[]={"indication"};
//-------------------------函數(shù)聲明--------------

上一頁(yè) 1 2 下一頁(yè)

評(píng)論


技術(shù)專(zhuān)區(qū)

關(guān)閉