mirror of
https://github.com/whowechina/aic_pico.git
synced 2025-03-01 16:10:55 +01:00
19 lines
279 B
C
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
|