1
0
Fork 0

[Keyboard] Add Avalanche v4 (#17288)

Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
Will Winder 2022-07-02 08:07:35 -04:00 committed by GitHub
parent c3ef70b9a6
commit f03aec28fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 495 additions and 0 deletions

View file

@ -0,0 +1,18 @@
// Copyright 2022 Vitaly Volkov (@vlkv)
// SPDX-License-Identifier: GPL-2.0-or-later
#include "avalanche.h"
#ifdef OLED_ENABLE
oled_rotation_t oled_init_kb(oled_rotation_t rotation) {
return OLED_ROTATION_180;
}
bool oled_task_kb(void) {
if (!oled_task_user()) {
return false;
}
oled_write_P(PSTR("Avalanche\nVersion 4"), false);
return true;
}
#endif