51_LanQiaoBei/题目/真题/8 第八届省赛_左岚/test8/Driver/Key.c

15 lines
247 B
C
Raw Normal View History

2025-04-13 01:02:19 +08:00
#include "Key.h"
unsigned char Key_Read()
{
unsigned char temp = 0;
P44 = 0;
if (P33 == 0)
temp = 4;
if (P32 == 0)
temp = 5;
if (P31 == 0)
temp = 6;
if (P30 == 0)
temp = 7;
return temp;
}