fc660c: Change pin for Insert LED

This commit is contained in:
tmk 2017-04-03 02:32:21 +09:00
parent fc0fe84a69
commit 2ed3abb6da
3 changed files with 5 additions and 5 deletions

View file

@ -53,8 +53,8 @@ void matrix_init(void)
KEY_INIT();
// LEDs on CapsLock and Insert
DDRB |= (1<<6) | (1<<7);
PORTB |= (1<<6) | (1<<7);
DDRB |= (1<<5) | (1<<6);
PORTB |= (1<<5) | (1<<6);
// initialize matrix state: all keys off
for (uint8_t i=0; i < MATRIX_ROWS; i++) _matrix0[i] = 0x00;