arduino-esp32/variants/arduino_nano_nora/double_tap.h
Lucas Saavedra Vaz 6bfcd6d9a9
refactor(style): Change some style options (#9526)
* refactor(style): Change some style options

* refactor(style): Apply style changes
2024-04-19 18:16:55 +03:00

21 lines
318 B
C

#ifndef __DOUBLE_TAP_H__
#define __DOUBLE_TAP_H__
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
void double_tap_init(void);
void double_tap_mark(void);
void double_tap_invalidate(void);
bool double_tap_check_match(void);
#ifdef __cplusplus
}
#endif
#endif /* __DOUBLE_TAP_H__ */