[Keyboard] Add define GPIO into Dosa40RGB (#15252)

Co-authored-by: NOOB Maker <93704375+noobmakers@users.noreply.github.com>
master
Dao Tak Isaac 2021-11-29 15:21:29 +07:00 committed by GitHub
parent b12acfb630
commit bcf2632a29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -67,3 +67,8 @@ void rgb_matrix_indicators_user(void)
rgb_matrix_set_color(22, 200, 0, 200);
}
}
void keyboard_pre_init_user(void) {
setPinOutput(B5);
writePinLow(B5);
}