//***********************************************************************
//FUNCTION : LED FLASH
/* Test configuration:
MCU: ATmega128
Oscillator: External Clock 07.37280 MHz
Ext. Modules: -
SW: mikroC PRO for AVR
*/
//***********************************************************************
// Include Files
//***********************************************************************
#define uchar unsigned char
#define uint unsigned int
#define Data_IO PORTA //8-LED DATA
#define Data_DDR DDRA //8-LED DATA DIRECTION
//----------------------------------------------------------------------------------------
// Macros
//----------------------------------------------------------------------------------------
#define SETBIT(ADDRESS,BIT) (ADDRESS |= (1<<BIT))
#define CLRBIT(ADDRESS,BIT) (ADDRESS &= ~(1<<BIT))
#define CHKBIT(ADDRESS,BIT) (ADDRESS & (1<<BIT))
sbit D_LE at PORTD4_bit; // Output pin, PINx register is used
sbit W_LE at PORTD5_bit; // Output pin, PINx register is used
sbit D_LE_Pin_Direction at DDD4_bit;
sbit W_LE_Pin_Direction at DDD5_bit;
//***********************************************************************
// Common cathode DISPLAY CODE 0--F
// DP G F E D C B A
// 0 0 0 1 1 1 1 1 1 ==> 3FH
// 1 0 0 0 0 0 1 1 0 ==> 06H
// 2 0 1 0 1 1 0 1 1 ==> 5BH
//***********************************************************************
uchar table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
//***********************************************************************
// IO PORT Initialization
//***********************************************************************
void System_Init()
{
Data_IO=0xFF; //7-SEGMENT DATA PORT IS OUT <1=OUT , 0=IN>
Data_DDR=0xFF;
D_LE_Pin_Direction = 1; // Set pin as output ;
W_LE_Pin_Direction = 1; // Set pin as output ;
//IC74HC573 CONTROL PORT IS OUT.
//IC1 74LS573 LE=PD4 ,IC2 74LS573 LE=PD5
}
//*************************************************************************
// 74HC573 CONTROL 7-SEGMENT SCAN FUNCTION
// 74LS573 LE=1 ACTIVE , LE=0 DISABLE
//*************************************************************************
void Display_char(uchar num)
{
D_LE=1;
W_LE=1; //控制數碼管位的74HC573的LE管腳置高
Data_IO=0x7f; //設置要顯示的位,也就是哪一個數碼管亮,這裡是八個一起顯示
// Display @ digit 0 , all segment 8 digits , 7-6-5-4-3-2-1-0
Delay_us(5);
W_LE=0; //鎖存位數據,下面送上段數據以後,就顯示出來了
Data_IO=table[num]; //SEND DATA TO 7-SEG, EXAMPLE 0 IS SEND 0x3f
D_LE=0; //鎖存段數據,數碼管亮一個時間片刻
Delay_us(10); //DELAY, affect the brightness and flashing of 7-SEG
}
//*************************************************************************
// MAIN PROCEDURE
//*************************************************************************
void main(){
char num;
System_Init();
while(1) {
for (num=0;num<=15;num++)
{
Display_char(num);
Delay_ms(250);
}
} ;
} // END MAIN
2014年2月3日 星期一
訂閱:
張貼留言 (Atom)
WOKWI DHT22 & LED , Node-Red + SQLite database
WOKWI DHT22 & LED , Node-Red + SQLite database Node-Red程式 [{"id":"6f0240353e534bbd","type":"comment&...
-
python pip 不是内部或外部命令 -- 解決方法 要安裝 Pyqt5 1. 首先,開啟命令提示字元。 2. 輸入 pip3 install pyqt5 好像不能執行 ! ! 錯誤顯示 : ‘ pip3 ’ 不是內部或外部命令、可執行的程式或批...
-
課程講義 下載 11/20 1) PPT 下載 + 程式下載 http://www.mediafire.com/file/cru4py7e8pptfda/106%E5%8B%A4%E7%9B%8A2-1.rar 11/27 2) PPT 下載...
-
• 認 識 PreFix、InFix、PostFix PreFix(前序式):* + 1 2 + 3 4 InFix(中序式): (1+2)*(3+4) PostFix(後序式):1 2 + 3 4 + * 後 序式的運算 例如: 運算時由 後序式的...
沒有留言:
張貼留言