移动文件夹

This commit is contained in:
不吃油炸鸡
2026-02-19 12:58:19 +08:00
parent c79943a647
commit a8cb722a6f
1199 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
#include "key.h"
#include "delay.h"
void Key_Port_Init(void)
{
GPIO_InitTypeDef GPIO_InitStruct = {0};
/* GPIO Ports Clock Enable */
__HAL_RCC_GPIOA_CLK_ENABLE();
/*Configure GPIO pin : PA0 */
GPIO_InitStruct.Pin = KEYB_PIN;
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
GPIO_InitStruct.Pull = GPIO_PULLUP;
HAL_GPIO_Init(KEYB_PORT, &GPIO_InitStruct);
}
uint8_t KeyScan(uint8_t mode)
{
static uint8_t key_up = 1;
uint8_t keyvalue=0;
if(mode) key_up = 1;
if( key_up && !KEYB)
{
delay_ms(3);//ensure the key is down
if(!KEYB) keyvalue = 1;
if(keyvalue) key_up = 0;
}
else
{
delay_ms(3);//ensure the key is up
if(KEYB)
key_up = 1;
}
return keyvalue;
}

View File

@@ -0,0 +1,25 @@
#ifndef __KEY_H__
#define __KEY_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
//KEY1
#define KEYB_PORT GPIOA
#define KEYB_PIN GPIO_PIN_0
#define KEYB HAL_GPIO_ReadPin(KEYB_PORT,KEYB_PIN)
void Key_Port_Init(void);
uint8_t KeyScan(uint8_t mode);
#ifdef __cplusplus
}
#endif
#endif