Skip to content

Commit

Permalink
[Keyboard] Add keyboard Getta25 (#7497)
Browse files Browse the repository at this point in the history
* [Keyboard] Add keyboard Getta25

Add Getta25 keyboard.

A 25 keys Tenkey.
Salicylic-acid3

* Update keyboards/getta25/info.json

* Update keyboards/getta25/readme.md

* Update keyboards/getta25/readme.md

* Update keyboards/getta25/readme.md

* Update keyboards/getta25/info.json

* Update keyboards/getta25/info.json

* Update keyboards/getta25/info.json

* Update keyboards/getta25/info.json

* Update keyboards/getta25/keymaps/oled/glcdfont.c

* Update keyboards/getta25/keymaps/oled/glcdfont.c

* Keymap Update

Remove unnecessary code blocks

* Update keyboards/getta25/keymaps/oled/keymap.c

* Update keyboards/getta25/keymaps/oled/keymap.c

* Update keyboards/getta25/keymaps/oled/keymap.c
  • Loading branch information
Salicylic-acid3 authored and noroadsleft committed Jan 20, 2020
1 parent 61dbb92 commit c23b735
Show file tree
Hide file tree
Showing 14 changed files with 771 additions and 0 deletions.
21 changes: 21 additions & 0 deletions keyboards/getta25/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
Copyright 2012 Jun Wako <[email protected]>
Copyright 2015 Jack Humbert
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http:https://www.gnu.org/licenses/>.
*/

#pragma once

#include "config_common.h"
1 change: 1 addition & 0 deletions keyboards/getta25/getta25.c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include "getta25.h"
7 changes: 7 additions & 0 deletions keyboards/getta25/getta25.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#pragma once

#include "quantum.h"

#ifdef KEYBOARD_getta25_rev1
#include "rev1.h"
#endif
38 changes: 38 additions & 0 deletions keyboards/getta25/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"keyboard_name": "Getta25",
"url": "https://salicylic-acid3.hatenablog.com/",
"maintainer": "Salicylic_acid3",
"width": 5.25,
"height": 6.25,
"layouts": {
"LAYOUT": {
"layout": [
{"label":"ESC", "x":0, "y":0},
{"label":"F2", "x":1, "y":0},
{"label":"=", "x":2, "y":0},
{"label":"DEL", "x":3, "y":0},
{"label":"Num Lock", "x":0, "y":1.25},
{"label":"/", "x":1, "y":1.25},
{"label":"*", "x":2, "y":1.25},
{"label":"-", "x":3, "y":1.25},
{"label":"7", "x":0, "y":2.25},
{"label":"8", "x":1, "y":2.25},
{"label":"9", "x":2, "y":2.25},
{"label":"ESC", "x":4.25, "y":2.25},
{"label":"4", "x":0, "y":3.25},
{"label":"5", "x":1, "y":3.25},
{"label":"6", "x":2, "y":3.25},
{"label":"+", "x":3, "y":2.25, "h":2},
{"label":"F2", "x":4.25, "y":3.25},
{"label":"1", "x":0, "y":4.25},
{"label":"2", "x":1, "y":4.25},
{"label":"3", "x":2, "y":4.25},
{"label":"DEL", "x":4.25, "y":4.25},
{"label":"0", "x":0, "y":5.25, "w":2},
{"label":".", "x":2, "y":5.25},
{"label":"Enter", "x":3, "y":4.25, "h":2},
{"label":"BSPC", "x":4.25, "y":5.25}
]
}
}
}
24 changes: 24 additions & 0 deletions keyboards/getta25/keymaps/default/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* Copyright 2018 Salicylic_acid3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http:https://www.gnu.org/licenses/>.
*/

#pragma once

/* Select hand configuration */

#define TAPPING_FORCE_HOLD
#define TAPPING_TERM 180


61 changes: 61 additions & 0 deletions keyboards/getta25/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
#include QMK_KEYBOARD_H

// Each layer gets a name for readability, which is then used in the keymap matrix below.
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
// Layer names don't all need to be of the same length, obviously, and you can also skip them
// entirely and just use numbers.
enum layer_number {
_BASE,
_ARROW,
_ADJUST,
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_BASE] = LAYOUT(
//,-----------------------------------|
LT(_ADJUST,KC_ESC), KC_F2, KC_EQL, KC_DEL,
//|--------+--------+--------+--------|
KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS,
//|--------+--------+--------+--------+--------|
KC_P7, KC_P8, KC_P9, KC_ESC,
//|--------+--------+--------+--------+--------|
KC_P4, KC_P5, KC_P6, KC_PPLS, KC_F2,
//|--------+--------+--------+--------+--------|
KC_P1, KC_P2, KC_P3, KC_DEL,
//|--------+--------+--------+--------+--------|
LT(_ARROW, KC_P0), KC_PDOT, KC_PENT, KC_BSPC
//`--------------------------------------------'
),

[_ARROW] = LAYOUT(
//,-----------------------------------|
_______, _______, _______, _______,
//|--------+--------+--------+--------|
XXXXXXX, _______, _______, _______,
//|--------+--------+--------+--------+--------|
XXXXXXX, KC_UP, XXXXXXX, _______,
//|--------+--------+--------+--------+--------|
KC_LEFT, KC_DOWN,KC_RIGHT, _______, _______,
//|--------+--------+--------+--------+--------|
XXXXXXX, KC_DOWN, XXXXXXX, _______,
//|--------+--------+--------+--------+--------|
MO(_ARROW), _______, _______, _______
//`--------------------------------------------'
),

[_ADJUST] = LAYOUT( /* Base */
//,-----------------------------------|
MO(_ADJUST), _______, _______, _______,
//|--------+--------+--------+--------|
XXXXXXX, XXXXXXX, XXXXXXX, _______,
//|--------+--------+--------+--------+--------|
RGB_SAD, RGB_SAI, XXXXXXX, _______,
//|--------+--------+--------+--------+--------|
RGB_HUD, RGB_HUI, XXXXXXX, RGB_TOG, _______,
//|--------+--------+--------+--------+--------|
RGB_VAD, RGB_VAI, XXXXXXX, _______,
//|--------+--------+--------+--------+--------|
_______, _______, RGB_MOD, _______
//`--------------------------------------------'
)
};
25 changes: 25 additions & 0 deletions keyboards/getta25/keymaps/oled/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* Copyright 2018 Salicylic_acid3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http:https://www.gnu.org/licenses/>.
*/

#pragma once

/* Select hand configuration */

#define TAPPING_FORCE_HOLD
#define TAPPING_TERM 180

#define OLED_FONT_H "keyboards/getta25/keymaps/oled/glcdfont.c"

Loading

0 comments on commit c23b735

Please sign in to comment.