1234567891011121314151617181920212223242526272829303132 |
- #ifndef TESTS_TEST_COMMON_TEST_MATRIX_H_
- #define TESTS_TEST_COMMON_TEST_MATRIX_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- void press_key(uint8_t col, uint8_t row);
- void release_key(uint8_t col, uint8_t row);
- void clear_all_keys(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|