2 Copyright 2012 Jun Wako <wakojun@gmail.com>
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include <util/delay.h>
34 static uint8_t debouncing = DEBOUNCE;
36 /* matrix state(1:on, 0:off) */
37 static matrix_row_t matrix[MATRIX_ROWS];
38 static matrix_row_t matrix_debouncing[MATRIX_ROWS];
40 static matrix_row_t read_cols(void);
41 static void init_cols(void);
42 static void unselect_rows(void);
43 static void select_row(uint8_t row);
47 uint8_t matrix_rows(void)
53 uint8_t matrix_cols(void)
58 #define LED_ON() do { DDRC |= (1<<5); PORTC |= (1<<5); } while (0)
59 #define LED_OFF() do { DDRC &= ~(1<<5); PORTC &= ~(1<<5); } while (0)
60 #define LED_TGL() do { DDRC |= (1<<5); PINC |= (1<<5); } while (0)
62 void matrix_init(void)
64 // initialize row and col
68 // initialize matrix state: all keys off
69 for (uint8_t i=0; i < MATRIX_ROWS; i++) {
71 matrix_debouncing[i] = 0;
81 uint8_t matrix_scan(void)
83 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
85 _delay_us(30); // without this wait read unstable value.
86 matrix_row_t cols = read_cols();
87 if (matrix_debouncing[i] != cols) {
88 matrix_debouncing[i] = cols;
90 debug("bounce!: "); debug_hex(debouncing); debug("\n");
92 debouncing = DEBOUNCE;
101 for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
102 matrix[i] = matrix_debouncing[i];
111 bool matrix_is_on(uint8_t row, uint8_t col)
113 return (matrix[row] & ((matrix_row_t)1<<col));
117 matrix_row_t matrix_get_row(uint8_t row)
122 void matrix_print(void)
124 print("\nr/c 0123456789ABCDEF\n");
125 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
126 phex(row); print(": ");
127 pbin_reverse16(matrix_get_row(row));
132 /* Column pin configuration
133 * col: 0 1 2 3 4 5 6 7
134 * pin: B0 B1 B2 B3 B4 B5 B6 B7
136 static void init_cols(void)
138 // Input with pull-up(DDR:0, PORT:1)
143 /* Returns status of switches(1:on, 0:off) */
144 static matrix_row_t read_cols(void)
146 // Invert because PIN indicates 'switch on' with low(0) and 'off' with high(1)
150 /* Row pin configuration
151 * row: 0 1 2 3 4 5 6 7
152 * pin: D0 D1 D2 D3 D4 D5 D6 C2
154 static void unselect_rows(void)
156 // Hi-Z(DDR:0, PORT:0) to unselect
158 PORTD &= ~0b01111111;
160 PORTC &= ~0b00000100;
163 static void select_row(uint8_t row)
165 // Output low(DDR:1, PORT:0) to select