1
0
mirror of https://github.com/whowechina/aic_pico.git synced 2025-03-01 16:10:55 +01:00
aic_pico/firmware/src/keypad.h
2024-05-21 12:56:41 +08:00

19 lines
279 B
C

/*
* AIC Pico Keypad
* WHowe <github.com/whowechina>
*/
#ifndef KEYPAD_H
#define KEYPAD_H
#include <stdint.h>
#include <stdbool.h>
void keypad_init();
uint8_t keypad_key_num();
bool keypad_is_stuck();
void keypad_update();
uint16_t keypad_read();
#endif