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

Personal keymap for Let's Split keyboard. #7702

Merged
merged 27 commits into from
Jan 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
01cdf4b
Add Initial layout configuration.
geripgeri Aug 26, 2018
0fa2725
Set arduino pro micro's built in RX LED as Numlock
geripgeri Aug 26, 2018
ca58b2d
Enable Autoshift feautre.
geripgeri Aug 27, 2018
163e9a7
Remove DVORAK layout.
geripgeri Aug 27, 2018
eb49ab1
Add Numpad, update default layer.
geripgeri Aug 27, 2018
2e68d0c
Update AutoShift timeout.
geripgeri Sep 12, 2018
54e4e21
Beautify ASCII Art.
geripgeri Dec 21, 2018
b4eaa82
Update keymap.
geripgeri Dec 27, 2018
793139f
Add Initial verison of RGB lighting.
geripgeri Dec 21, 2018
ab8e495
Add Tap dance, hungarian letters.
geripgeri Dec 21, 2018
3d62710
Update RGB to use only noeeprom functions.
geripgeri Dec 27, 2018
dc7a799
Change default rgb led color.
geripgeri Feb 23, 2019
f36323f
Merge remote-tracking branch 'upstream/master' into refactor
geripgeri Feb 23, 2019
75214fa
Add `pragma once`.
geripgeri Feb 23, 2019
483e508
Merge pull request #1 from geripgeri/refactor
geripgeri Feb 23, 2019
e7b2e9e
Merge remote-tracking branch 'upstream/master'
geripgeri May 28, 2019
54e7b1d
Emojis added.
geripgeri Aug 26, 2019
31cf4b4
Merge remote-tracking branch 'upstream/master'
geripgeri Sep 9, 2019
afe509a
Merge remote-tracking branch 'upstream/master'
geripgeri Dec 7, 2019
ff877f1
Add tap dance for hungarian letters, multimedia control, slash/backsl…
geripgeri Dec 7, 2019
0f41163
Remove audio related code.
geripgeri Dec 7, 2019
30bccd5
Add Gaming layer.
geripgeri Dec 7, 2019
7d08af8
Remove unnecessary code, update copyright.
geripgeri Dec 8, 2019
56a625b
Merge remote-tracking branch 'upstream/master'
geripgeri Dec 23, 2019
782594f
Add readme.md
geripgeri Dec 23, 2019
75a8023
Implement code review suggestions.
geripgeri Dec 23, 2019
bb9f1e2
Implement code review suggestions #2
geripgeri Dec 26, 2019
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
37 changes: 37 additions & 0 deletions keyboards/lets_split/keymaps/geripgeri/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*
This is the c configuration file for the keymap

Copyright 2012 Jun Wako <[email protected]>
Copyright 2015 Jack Humbert
Copyright 2019 Gergely Peidl

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 AUTO_SHIFT_TIMEOUT 200
#define NO_AUTO_SHIFT_NUMERIC

// RGB lighting
#define RGBLIGHT_SLEEP
#undef RGBLED_NUM
#define RGBLED_NUM 32

#define RGBLIGHT_EFFECT_BREATHING
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
#define RGBLIGHT_EFFECT_STATIC_GRADIENT

#define TAPPING_TERM 200
Loading