本人使用的51开发板为 郭天祥C51 TX-1C开发板 ;
本笔记部分根据B站up主:江科大自化协、郭天祥的教学视频 整理得到
//key.h
#ifndef _KEY_H_
#define _KEY_H_
unsigned char Key(void);
void Key_Loop(void);
#endif
//key.c
#include <REGX52.H>
#include "Key.h"
unsigned char KeyValue;
unsigned char Key(void)
{
unsigned char m_temp = 0;
m_temp = KeyValue;
KeyValue = 0;
return m_temp;
}
unsigned char Key_GetState