1602 AVR單片機(jī)版 報警指示功能
功能說明:正常狀態(tài)下,8個LED不停閃爍,1602顯示normal indication指示
報警狀態(tài)下, 8個LED全發(fā)亮不閃爍,1602顯示alarm報警,只有按復(fù)位按鈕才能解除報警.
alarm狀態(tài)時,由于PB口的低3位和,1602時能,讀寫,數(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 //讀寫選擇
#define RW0 PORTB_Bit1=0
#define EN1 PORTB_Bit2=1 //讀寫時能
#define EN0 PORTB_Bit2=0
#define DATAPORT PORTA //1602數(shù)據(jù)口
#define busy 0x80 //繁忙標(biāo)志
#include "ku.h" //調(diào)用函數(shù)庫
//-------------------------------------------
uchar alarm[]={"alarm "}; //報警字符串
uchar normal[]={"normal"}; //正常字符串
uchar indication[]={"indication"};
//-------------------------函數(shù)聲明--------------
關(guān)鍵詞:
1602AVR單片機(jī)報警指
相關(guān)推薦
技術(shù)專區(qū)
- FPGA
- DSP
- MCU
- 示波器
- 步進(jìn)電機(jī)
- Zigbee
- LabVIEW
- Arduino
- RFID
- NFC
- STM32
- Protel
- GPS
- MSP430
- Multisim
- 濾波器
- CAN總線
- 開關(guān)電源
- 單片機(jī)
- PCB
- USB
- ARM
- CPLD
- 連接器
- MEMS
- CMOS
- MIPS
- EMC
- EDA
- ROM
- 陀螺儀
- VHDL
- 比較器
- Verilog
- 穩(wěn)壓電源
- RAM
- AVR
- 傳感器
- 可控硅
- IGBT
- 嵌入式開發(fā)
- 逆變器
- Quartus
- RS-232
- Cyclone
- 電位器
- 電機(jī)控制
- 藍(lán)牙
- PLC
- PWM
- 汽車電子
- 轉(zhuǎn)換器
- 電源管理
- 信號放大器
評論