STM32CubeMX-Keil_uVision5/exp6/Core/Inc/MatrixKey.h
423A35C7 bf0315b1b6 第六次实验-定时器
需要把矩阵按键的线拆了。
2024-11-24 21:25:53 +08:00

23 lines
287 B
C

#ifndef __MATRIXKEY_H
#define __MATRIXKEY_H
#include<stdint.h>
#include "directkey.h"
// enum {State0=0, State1, State2};
#define NO_KEY 0xFF
#ifdef __cplusplus
extern "C" {
#endif
uint8_t MatrixKeyScan(void);
extern uint8_t const KeyTable[16];
#ifdef __cplusplus
}
#endif
#endif