Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Abacus Keyboard ReMerge #8308

Merged
merged 24 commits into from
Mar 13, 2020
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ca82e3b
added abacus keyboard
nickolaij Mar 2, 2020
17b148a
keymap updates
nickolaij Mar 3, 2020
2b5a495
Update keyboards/abacus/config.h
nickolaij Mar 4, 2020
1acb839
Update keyboards/abacus/config.h
nickolaij Mar 4, 2020
e883a1a
Update keyboards/abacus/keymaps/default/keymap.c
nickolaij Mar 4, 2020
a6a4990
Update keyboards/abacus/keymaps/default/keymap.c
nickolaij Mar 4, 2020
3a5744e
Update keyboards/abacus/keymaps/default/keymap.c
nickolaij Mar 4, 2020
6808db7
start cleaning up for merge
nickolaij Mar 4, 2020
2842f12
cleaned for merge
nickolaij Mar 4, 2020
c0dd407
cleaned
nickolaij Mar 4, 2020
db025a4
cleaned
nickolaij Mar 4, 2020
52f0b21
Update keyboards/abacus/abacus.h
nickolaij Mar 5, 2020
793cdd6
Update keyboards/abacus/keymaps/default/keymap.c
nickolaij Mar 5, 2020
46fe32a
Update keyboards/abacus/keymaps/default/readme.md
nickolaij Mar 5, 2020
78e6f28
Update keyboards/abacus/readme.md
nickolaij Mar 5, 2020
253371e
Update keyboards/abacus/readme.md
nickolaij Mar 5, 2020
66cf4fd
Update keyboards/abacus/rules.mk
nickolaij Mar 5, 2020
69ec9ad
Update keyboards/abacus/info.json
nickolaij Mar 5, 2020
0a35ff1
Update keyboards/abacus/info.json
nickolaij Mar 5, 2020
aa76620
Update keyboards/abacus/info.json
nickolaij Mar 5, 2020
c84be31
Update keyboards/abacus/readme.md
nickolaij Mar 6, 2020
b9ee1c9
Update keyboards/abacus/info.json
nickolaij Mar 6, 2020
d7a2b3e
Update keyboards/abacus/rules.mk
nickolaij Mar 7, 2020
87f0ef5
Update keyboards/abacus/rules.mk
nickolaij Mar 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions keyboards/abacus/abacus.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* Copyright 2020 nickolaij
*
* 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://www.gnu.org/licenses/>.
*/

#include "abacus.h"
41 changes: 41 additions & 0 deletions keyboards/abacus/abacus.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/* Copyright 2020 nickolaij
*
* 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://www.gnu.org/licenses/>.
*/

#pragma once
#define XXX KC_NO
#include "quantum.h"
nickolaij marked this conversation as resolved.
Show resolved Hide resolved


/* This is a shortcut to help you visually see your layout.
*
* The first section contains all of the arguments representing the physical
* layout of the board and position of the keys.
*
* The second converts the arguments into a two-dimensional array which
* represents the switch matrix.
*/
#define LAYOUT( \
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, \
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, \
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, \
k30, k31, k32, k33, k34, k35, k36, k37, k38 \
) \
{ \
{ k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b }, \
{ k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b }, \
{ k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b }, \
{ k30, k31, k32, k33, XXX, XXX, k34, XXX, k35, k36, k37, k38} \
}
133 changes: 133 additions & 0 deletions keyboards/abacus/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
/*
Copyright 2020 nickolaij

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://www.gnu.org/licenses/>.
*/

#pragma once

#include "config_common.h"

/* USB Device descriptor parameter */
#define VENDOR_ID 0xFEED
#define PRODUCT_ID 0x0000
#define DEVICE_VER 0x0001
#define MANUFACTURER nickolaij
#define PRODUCT abacus
#define DESCRIPTION A first attempt at a custom keyboard

/* key matrix size */
#define MATRIX_ROWS 4
#define MATRIX_COLS 12

/*
* Keyboard Matrix Assignments
*
* Change this to how you wired your keyboard
* COLS: AVR pins used for columns, left to right
* ROWS: AVR pins used for rows, top to bottom
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
*
*/
#define MATRIX_ROW_PINS { D3, D2, D4, C6 }
#define MATRIX_COL_PINS { F4, F5, F6, F7, B1, D7, B3, E6, B2, B4, B6, B5}
#define UNUSED_PINS {B0}

#define DIP_SWITCH_PINS { D0 }

#define ENCODERS_PAD_A { F1 }
#define ENCODERS_PAD_B { F0 }
#define ENCODER_RESOLUTION 4

/* COL2ROW, ROW2COL*/
#define DIODE_DIRECTION COL2ROW
#define RGB_DI_PIN D1

#ifdef RGB_DI_PIN
# define RGBLED_NUM 17
# define RGBLIGHT_HUE_STEP 8
# define RGBLIGHT_SAT_STEP 8
# define RGBLIGHT_VAL_STEP 8
# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
/*== choose animations ==*/
# define RGBLIGHT_EFFECT_BREATHING
# define RGBLIGHT_EFFECT_RAINBOW_MOOD
# define RGBLIGHT_EFFECT_RAINBOW_SWIRL
# define RGBLIGHT_EFFECT_SNAKE
# define RGBLIGHT_EFFECT_KNIGHT
# define RGBLIGHT_EFFECT_STATIC_GRADIENT
/*== customize breathing effect ==*/
/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
/*==== use exp() and sin() ====*/
# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
#endif

/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
#define DEBOUNCE 5

/* define if matrix has ghost (lacks anti-ghosting diodes) */
//#define MATRIX_HAS_GHOST

/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
#define LOCKING_SUPPORT_ENABLE
/* Locking resynchronize hack */
#define LOCKING_RESYNC_ENABLE

/*
* Feature disable options
* These options are also useful to firmware size reduction.
*/

/* disable debug print */
//#define NO_DEBUG

/* disable print */
//#define NO_PRINT

/* disable action features */
//#define NO_ACTION_LAYER
//#define NO_ACTION_TAPPING
//#define NO_ACTION_ONESHOT

/* disable these deprecated features by default */
#ifndef LINK_TIME_OPTIMIZATION_ENABLE
#define NO_ACTION_MACRO
#define NO_ACTION_FUNCTION
#endif
/*
* MIDI options
*/

/* Prevent use of disabled MIDI features in the keymap */
//#define MIDI_ENABLE_STRICT 1

/* enable basic MIDI features:
- MIDI notes can be sent when in Music mode is on
*/
//#define MIDI_BASIC

/* enable advanced MIDI features:
- MIDI notes can be added to the keymap
- Octave shift and transpose
- Virtual sustain, portamento, and modulation wheel
- etc.
*/
//#define MIDI_ADVANCED

/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
//#define MIDI_TONE_KEYCODE_OCTAVES 1
63 changes: 63 additions & 0 deletions keyboards/abacus/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"keyboard_name": "Abacus",
"url": "https://www.github.com/nickolaij",
"maintainer": "nickolaij",
"width": 12,
nickolaij marked this conversation as resolved.
Show resolved Hide resolved
"height": 4,
"layouts": {
"LAYOUT": {
"key_count": 45,
"layout": [
{"label":"k00", "x":0, "y":0, "w":1},
{"label":"k01", "x":1, "y":0, "w":1},
{"label":"k02", "x":2, "y":0, "w":1},
{"label":"k03", "x":3, "y":0, "w":1},
{"label":"k04", "x":4, "y":0, "w":1},
{"label":"k05", "x":5, "y":0, "w":1},
{"label":"k06", "x":6, "y":0, "w":1},
{"label":"k07", "x":7, "y":0, "w":1},
{"label":"k08", "x":8, "y":0, "w":1},
{"label":"k09", "x":9, "y":0, "w":1},
{"label":"k0a", "x":10, "y":0, "w":1},
{"label":"k0b", "x":11, "y":0, "w":1.75},

{"label":"k10", "x":0, "y":1, "w":1.25},
{"label":"k11", "x":1, "y":1, "w":1},
{"label":"k12", "x":2, "y":1, "w":1},
{"label":"k13", "x":3, "y":1, "w":1},
{"label":"k14", "x":4, "y":1, "w":1},
{"label":"k15", "x":5, "y":1, "w":1},
{"label":"k16", "x":6, "y":1, "w":1},
{"label":"k17", "x":7, "y":1, "w":1},
{"label":"k18", "x":8, "y":1, "w":1},
{"label":"k19", "x":9, "y":1, "w":1},
{"label":"k1a", "x":10, "y":1, "w":1},
{"label":"k1b", "x":11, "y":1, "w":1.5},
nickolaij marked this conversation as resolved.
Show resolved Hide resolved

{"label":"k20", "x":0, "y":2, "w":1.75},
{"label":"k21", "x":1, "y":2, "w":1},
{"label":"k22", "x":2, "y":2, "w":1},
{"label":"k23", "x":3, "y":2, "w":1},
{"label":"k24", "x":4, "y":2, "w":1},
{"label":"k25", "x":5, "y":2, "w":1},
{"label":"k26", "x":6, "y":2, "w":1},
{"label":"k27", "x":7, "y":2, "w":1},
{"label":"k28", "x":8, "y":2, "w":1},
{"label":"k29", "x":9, "y":2, "w":1},
{"label":"k2a", "x":10, "y":2, "w":1},
{"label":"k2b", "x":11, "y":2, "w":1.25},
nickolaij marked this conversation as resolved.
Show resolved Hide resolved

{"label":"k30", "x":0, "y":3, "w":1.25},
{"label":"k31", "x":1, "y":3, "w":1},
{"label":"k32", "x":2, "y":3, "w":1},
{"label":"k33", "x":3, "y":3, "w":2.75},
{"label":"k34", "x":4, "y":3, "w":2.75},
{"label":"k35", "x":5, "y":3, "w":1},
{"label":"k36", "x":6, "y":3, "w":1},
{"label":"k37", "x":7, "y":3, "w":1},
{"label":"k38", "x":8, "y":3, "w":1}

nickolaij marked this conversation as resolved.
Show resolved Hide resolved
]
}
}
}
Loading