⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 misc.h

📁 AVR单片机C语言程序设计实例精粹
💻 H
字号:
//******************************************************************************
// File Name : Gpio.h
// Author    : Steaven
// Created   : 2008-06-09
// Modified  : 
// Revision  : V0.0
//******************************************************************************

//macro declaration
#define cKey1 4
#define cKey2 5
#define cKey3 6
#define cKey4 7

//global variable(s) declaration
extern INT8U bYear;
extern INT8U bMonth;
extern INT8U bDate;
extern INT8U bHour;
extern INT8U bMinute;
extern INT8U bSecond;

//global function(s) declaration
void sSet_LED_Test(INT8U bEnable);
void sSet_Buzzer_Test(INT8U bEnable);
void LED_ON_ALL(void);
void LED_OFF_ALL(void);
void BUZZER_ON(void);
void BUZZER_OFF(void);
void Key_Detection(void);
void sInit_Calendar(void);
void Calendar_Update(void);
INT8U sbGet_LED_Test(void);
INT8U sbGet_Buzzer_Test(void);

//===============================END OF FILE==================================//


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -