Compare commits

..

3 Commits

2 changed files with 18 additions and 3 deletions

View File

@ -22,12 +22,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define USE_MATRIX_I2C
#undef SOFT_SERIAL_PIN
#define SOFT_SERIAL_PIN B6
/* Select hand configuration */
#define MASTER_LEFT
// #define MASTER_RIGHT
// #define EE_HANDS
#define SPLIT_WPM_ENABLE
//#define QUICK_TAP_TERM 0
//#define TAPPING_TERM 100

View File

@ -64,7 +64,18 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
)
};
void keyboard_post_init_user(void) {
// Customise these values to desired behaviour
//debug_enable=true;
//debug_matrix=true;
//debug_keyboard=true;
//debug_mouse=true;
}
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
if (!is_keyboard_master()) {
return OLED_ROTATION_0; // flips the display 180 degrees if offhand
}
return OLED_ROTATION_270;
}
@ -1114,7 +1125,6 @@ static void render_space(void) {
bool oled_task_user(void) {
oled_set_brightness(100);
if (is_keyboard_master()) {
arasaka_draw();
} else {