~ruther/qmk_firmware

ref: e3e587fc7491e56c77fecd0c5c91f0c10027f1a1 qmk_firmware/keyboards/avalanche/v4/v4.c -rw-r--r-- 381 bytes
e3e587fc — Alexei Robyn Add support for Smart 68 keyboard (#23043) 1 year, 3 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2022 Vitaly Volkov (@vlkv)
// SPDX-License-Identifier: GPL-2.0-or-later

#include "quantum.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
Do not follow this link