功能:
1.可以 年 月 日 時 分 秒顯示和鬧鐘功能 能通過8個按鍵自由調(diào)整 時 分 秒 鬧鐘響鈴時間。
2.帶復(fù)位按鍵,要是模塊抽風(fēng),摁復(fù)位按鍵即可!
3.使用 LCD16020A 屏幕顯示 屏幕電路設(shè)有電位器,可以調(diào)整清自由屏幕晰度。
#include "Buzzer.h"
void Buzzer(unsigned int Xms)
{
unsigned int i;
for (i = 2*Xms; i > 0; i--)
{
BUZZ = !BUZZ;
Delay384us();
// Delay(1);
}
for (i = Xms; i > 0; i--)
{
BUZZ = !BUZZ;
// Delay500us();
Delay500us();
}
}
void Delay769us() //@12.000MHz
{
unsigned char i, j;
_nop_();
i = 2;
j = 123;
do
{
while (--j);
} while (--i);
}
void Delay1ms() //@12.000MHz
{
unsigned char i, j;
i = 2;
j = 239;
do
{
while (--j);
} while (--i);
}
void Delay384ms() //@12.000MHz
{
unsigned char i, j, k;
_nop_();
i = 3;
j = 236;
k = 13;
do
{
do
{
while (--k);
} while (--j);
} while (--i);
}
void Delay500us() //@12.000MHz
{
unsigned char i;
_nop_();
i = 247;
while (--i);
}
void Delay384us() //@12.000MHz
{
unsigned char i;
_nop_();
i = 189;
while (--i);
}
/**
* @brief 獨立按鍵——普中開發(fā)板
* @param 無
* @arg
* @retval 按鍵序號
*/
#include"Key.h"
#include"Delay.h"
unsigned char Key_Scan()
{
unsigned char KeyNum = 0;
if ( 0 == Key1)
{
Delay(10);
if (0 == Key1)
{
KeyNum = 1; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key1);
}
if ( 0 == Key2)
{
Delay(10);
if (0 == Key2)
{
KeyNum = 2; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key2);
}
if ( 0 == Key3)
{
Delay(10);
if (0 == Key3)
{
KeyNum = 3; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key3);
}
if ( 0 == Key4)
{
Delay(10);
if (0 == Key4)
{
KeyNum = 4; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key4);
}
if ( 0 == Key5)
{
Delay(10);
if (0 == Key5)
{
KeyNum = 5; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key5);
}
if ( 0 == Key6)
{
Delay(10);
if (0 == Key6)
{
KeyNum = 6; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key6);
}
if ( 0 == Key7)
{
Delay(10);
if (0 == Key7)
{
KeyNum = 7; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key7);
}
if ( 0 == Key8)
{
Delay(10);
if (0 == Key8)
{
KeyNum = 8; //鍵值編碼,賦鍵值,不直接做按鍵功能
} while (0 == Key8);
}
return KeyNum;
}
資料借鑒于此?紛傳
閱讀全文