aboutsummaryrefslogtreecommitdiff
path: root/common/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/matrix.h')
-rw-r--r--common/matrix.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/common/matrix.h b/common/matrix.h
new file mode 100644
index 000000000..c4b2cab51
--- /dev/null
+++ b/common/matrix.h
@@ -0,0 +1,49 @@
1/*
2Copyright 2011 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef MATRIX_H
19#define MATRIX_H
20
21#include <stdbool.h>
22
23/* number of matrix rows */
24uint8_t matrix_rows(void);
25/* number of matrix columns */
26uint8_t matrix_cols(void);
27/* intialize matrix for scaning. should be called once. */
28void matrix_init(void);
29/* scan all key states on matrix */
30uint8_t matrix_scan(void);
31/* whether modified from previous scan. used after matrix_scan. */
32bool matrix_is_modified(void);
33/* whether ghosting occur on matrix. */
34bool matrix_has_ghost(void);
35/* whether a swtich is on */
36bool matrix_is_on(uint8_t row, uint8_t col);
37/* matrix state on row */
38#if (MATRIX_COLS <= 8)
39uint8_t matrix_get_row(uint8_t row);
40#else
41uint16_t matrix_get_row(uint8_t row);
42#endif
43/* count keys pressed */
44uint8_t matrix_key_count(void);
45/* print matrix for debug */
46void matrix_print(void);
47
48
49#endif