aboutsummaryrefslogtreecommitdiff
path: root/keyboards/xelus/dawn60
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/xelus/dawn60')
-rw-r--r--keyboards/xelus/dawn60/config.h145
-rw-r--r--keyboards/xelus/dawn60/dawn60.c18
-rw-r--r--keyboards/xelus/dawn60/dawn60.h36
-rw-r--r--keyboards/xelus/dawn60/keymaps/default/config.h17
-rw-r--r--keyboards/xelus/dawn60/keymaps/default/keymap.c46
-rw-r--r--keyboards/xelus/dawn60/keymaps/via/config.h17
-rw-r--r--keyboards/xelus/dawn60/keymaps/via/keymap.c46
-rw-r--r--keyboards/xelus/dawn60/keymaps/via/rules.mk1
-rw-r--r--keyboards/xelus/dawn60/readme.md13
-rw-r--r--keyboards/xelus/dawn60/rules.mk49
10 files changed, 388 insertions, 0 deletions
diff --git a/keyboards/xelus/dawn60/config.h b/keyboards/xelus/dawn60/config.h
new file mode 100644
index 000000000..da709aa4a
--- /dev/null
+++ b/keyboards/xelus/dawn60/config.h
@@ -0,0 +1,145 @@
1/* Copyright 2017 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "config_common.h"
19
20// USB Device descriptor parameter
21#define VENDOR_ID 0x5845 // XE
22#define PRODUCT_ID 0x0060 // Dawn60
23#define DEVICE_VER 0x0001
24#define MANUFACTURER Xelus
25#define PRODUCT Dawn60
26#define DESCRIPTION Dawn60
27
28// key matrix size
29#define MATRIX_ROWS 5
30#define MATRIX_COLS 14
31
32//no underglow - prototype
33//#define MATRIX_ROW_PINS { B1, B3, B7, F6, F7 }
34//#define MATRIX_COL_PINS { B0, D5, B2, F5, D2, D3, D4, D6, D7, B4, B5, B6, C6, C7 }
35//#define UNUSED_PINS
36
37//underglow
38#define MATRIX_ROW_PINS { B1, B3, F1, F6, F7 }
39#define MATRIX_COL_PINS { B0, D5, B2, F5, D3, D2, C7, C6, B6, B5, B4, D7, D6, D4 }
40#define UNUSED_PINS
41
42// IS31FL3731 driver
43#define DRIVER_COUNT 2
44#define DRIVER_LED_TOTAL 64
45
46// COL2ROW or ROW2COL
47#define DIODE_DIRECTION COL2ROW
48
49// Set 0 if debouncing isn't needed
50#define DEBOUNCE 5
51
52// Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap
53#define LOCKING_SUPPORT_ENABLE
54// Locking resynchronize hack
55#define LOCKING_RESYNC_ENABLE
56
57/*
58 * Feature disable options
59 * These options are also useful to firmware size reduction.
60 */
61
62// disable debug print
63//#define NO_DEBUG
64
65// disable print
66//#define NO_PRINT
67
68// disable action features
69//#define NO_ACTION_LAYER
70//#define NO_ACTION_TAPPING
71//#define NO_ACTION_ONESHOT
72//#define NO_ACTION_MACRO
73//#define NO_ACTION_FUNCTION
74
75#define RGB_BACKLIGHT_ENABLED 1
76
77// This conditionally compiles the backlight code for Dawn60 specifics
78#define RGB_BACKLIGHT_DAWN60
79
80// enable/disable LEDs based on layout
81// switch between split backspace (1) or normal backspace(0)
82#define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 1
83// switch between Tsangan (1) or Arrows Bottom Row (0)
84#define RGB_BACKLIGHT_USE_7U_SPACEBAR 0
85// switch between standard split rshift (0) or arrows r shift (1)
86// .------------------. .-------------------.
87// | ? | Shift | Fn | vs | Shift | Up | Fn |
88// `------------------' `-------------------'
89#define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 1
90
91//not used
92#define RGB_BACKLIGHT_USE_ISO_ENTER 0
93#define RGB_BACKLIGHT_USE_SPLIT_LEFT_SHIFT 0
94#define RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS 0
95
96// disable backlight when USB suspended (PC sleep/hibernate/shutdown)
97#define RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED 0
98
99// disable backlight after timeout in minutes, 0 = no timeout
100#define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 0
101
102// the default brightness
103#define RGB_BACKLIGHT_BRIGHTNESS 255
104
105// the default effect (RGB test)
106#define RGB_BACKLIGHT_EFFECT 255
107
108// the default effect speed (0-3)
109#define RGB_BACKLIGHT_EFFECT_SPEED 0
110
111// the default color1 and color2
112#define RGB_BACKLIGHT_COLOR_1 { .h = 0, .s = 255 }
113#define RGB_BACKLIGHT_COLOR_2 { .h = 127, .s = 255 }
114
115//RGB Underglow defines
116#define RGB_DI_PIN F0
117#define WS2812_LED_TOTAL 20
118
119#define RGB_UNDERGLOW_ALPHA_TOP_START 0
120#define RGB_UNDERGLOW_ALPHA_TOP_END 6
121#define RGB_UNDERGLOW_ALPHA_BOT_START 12
122#define RGB_UNDERGLOW_ALPHA_BOT_END 15
123
124// These define which keys in the matrix are alphas/mods
125// Used for backlight effects so colors are different for
126// alphas vs. mods
127// Each value is for a row, bit 0 is column 0
128// Alpha=0 Mod=1
129#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_0 0b0000000000000001
130#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_1 0b0010000000000001
131#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_2 0b0011000000000001
132#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_3 0b0011000000000001
133#define RGB_BACKLIGHT_ALPHAS_MODS_ROW_4 0b0011111000011111
134
135#define RGB_BACKLIGHT_CAPS_LOCK_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
136#define RGB_BACKLIGHT_LAYER_1_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
137#define RGB_BACKLIGHT_LAYER_2_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
138#define RGB_BACKLIGHT_LAYER_3_INDICATOR { .color = { .h = 0, .s = 0 }, .index = 255 }
139
140//RGB reactive only on keypress (put 1 to enable)
141#define RGB_REACTIVE_LEFT_RIGHT 0
142#define RGB_REACTIVE_CYCLE_ALL 0
143#define RGB_REACTIVE_VERTICAL 0
144
145#define DYNAMIC_KEYMAP_LAYER_COUNT 4
diff --git a/keyboards/xelus/dawn60/dawn60.c b/keyboards/xelus/dawn60/dawn60.c
new file mode 100644
index 000000000..bce6eea9d
--- /dev/null
+++ b/keyboards/xelus/dawn60/dawn60.c
@@ -0,0 +1,18 @@
1/* Copyright 2017 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#ifndef RGB_BACKLIGHT_DAWN60
17#error RGB_BACKLIGHT_DAWN60 not defined, you done goofed somehao, brah
18#endif
diff --git a/keyboards/xelus/dawn60/dawn60.h b/keyboards/xelus/dawn60/dawn60.h
new file mode 100644
index 000000000..b1de35a7e
--- /dev/null
+++ b/keyboards/xelus/dawn60/dawn60.h
@@ -0,0 +1,36 @@
1/* Copyright 2017 Jason Williams (Wilba)
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#pragma once
17
18#include "quantum.h"
19#include "keyboards/wilba_tech/wt_rgb_backlight_keycodes.h"
20#include "via.h"
21
22#define XXX KC_NO
23
24#define LAYOUT_60_all( \
25 K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
26 K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
27 K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, \
28 K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3B, K3C, K3D, \
29 K40, K41, K42, K45, K49, K4A, K4B, K4C, K4D \
30) { \
31 { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \
32 { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D }, \
33 { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D }, \
34 { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, XXX, K3B, K3C, K3D }, \
35 { K40, K41, K42, XXX, XXX, K45, XXX, XXX, XXX, K49, K4A, K4B, K4C, K4D } \
36}
diff --git a/keyboards/xelus/dawn60/keymaps/default/config.h b/keyboards/xelus/dawn60/keymaps/default/config.h
new file mode 100644
index 000000000..8f4e8ac4c
--- /dev/null
+++ b/keyboards/xelus/dawn60/keymaps/default/config.h
@@ -0,0 +1,17 @@
1#pragma once
2
3/* enable/disable LEDs based on layout */
4// switch between split backspace (1) or normal backspace(0)
5#undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE
6#define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 0
7
8// switch between Tsangan (1) or Arrows Bottom Row (0)
9#undef RGB_BACKLIGHT_USE_7U_SPACEBAR
10#define RGB_BACKLIGHT_USE_7U_SPACEBAR 0
11
12// switch between standard split rshift (0) or arrows r shift (1)
13// .------------------. .-------------------.
14// | ? | Shift | Fn | vs | Shift | Up | Fn |
15// `------------------' `-------------------'
16#undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT
17#define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0
diff --git a/keyboards/xelus/dawn60/keymaps/default/keymap.c b/keyboards/xelus/dawn60/keymaps/default/keymap.c
new file mode 100644
index 000000000..522997342
--- /dev/null
+++ b/keyboards/xelus/dawn60/keymaps/default/keymap.c
@@ -0,0 +1,46 @@
1// Default layout for Dawn60
2#include QMK_KEYBOARD_H
3
4// RGB-specific keys:
5// EF_INC, EF_DEC, // next/previous backlight effect
6// H1_INC, H1_DEC, // Color 1 hue increase/decrease
7// S1_INC, S1_DEC, // Color 1 saturation increase/decrease
8// H2_INC, H2_DEC, // Color 2 hue increase/decrease
9// S2_INC, S2_DEC, // Color 2 saturation increase/decrease
10// BR_INC, BR_DEC, // backlight brightness increase/decrease
11
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
13// Default layer: Pressing caps-lock momentarily switches to Layer 1.
14// This is the default layer. Pressing an empty keycode on another layer will take you here.
15 [0] = LAYOUT_60_all(
16 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL , KC_BSLS,
17 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
18 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_DEL ,
19 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, MO(2),
20 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
21 ),
22
23 [1] = LAYOUT_60_all(
24 KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR,
25 KC_CAPS, KC_TRNS, KC_UP , KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE,
26 KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR,
27 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_RSFT, KC_PGUP, KC_TRNS,
28 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_PGDN, KC_END
29 ),
30
31 [2] = LAYOUT_60_all(
32 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
33 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
34 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
37 ),
38
39 [3] = LAYOUT_60_all(
40 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
41 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
42 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
43 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
44 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
45 )
46};
diff --git a/keyboards/xelus/dawn60/keymaps/via/config.h b/keyboards/xelus/dawn60/keymaps/via/config.h
new file mode 100644
index 000000000..45c7e511f
--- /dev/null
+++ b/keyboards/xelus/dawn60/keymaps/via/config.h
@@ -0,0 +1,17 @@
1#pragma once
2
3/* enable/disable LEDs based on layout */
4// switch between split backspace (1) or normal backspace(0)
5#undef RGB_BACKLIGHT_USE_SPLIT_BACKSPACE
6#define RGB_BACKLIGHT_USE_SPLIT_BACKSPACE 1
7
8// switch between Tsangan (1) or Arrows Bottom Row (0)
9#undef RGB_BACKLIGHT_USE_7U_SPACEBAR
10#define RGB_BACKLIGHT_USE_7U_SPACEBAR 0
11
12// switch between standard split rshift (0) or arrows r shift (1)
13// .------------------. .-------------------.
14// | ? | Shift | Fn | vs | Shift | Up | Fn |
15// `------------------' `-------------------'
16#undef RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT
17#define RGB_BACKLIGHT_USE_SPLIT_RIGHT_SHIFT 0
diff --git a/keyboards/xelus/dawn60/keymaps/via/keymap.c b/keyboards/xelus/dawn60/keymaps/via/keymap.c
new file mode 100644
index 000000000..522997342
--- /dev/null
+++ b/keyboards/xelus/dawn60/keymaps/via/keymap.c
@@ -0,0 +1,46 @@
1// Default layout for Dawn60
2#include QMK_KEYBOARD_H
3
4// RGB-specific keys:
5// EF_INC, EF_DEC, // next/previous backlight effect
6// H1_INC, H1_DEC, // Color 1 hue increase/decrease
7// S1_INC, S1_DEC, // Color 1 saturation increase/decrease
8// H2_INC, H2_DEC, // Color 2 hue increase/decrease
9// S2_INC, S2_DEC, // Color 2 saturation increase/decrease
10// BR_INC, BR_DEC, // backlight brightness increase/decrease
11
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
13// Default layer: Pressing caps-lock momentarily switches to Layer 1.
14// This is the default layer. Pressing an empty keycode on another layer will take you here.
15 [0] = LAYOUT_60_all(
16 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL , KC_BSLS,
17 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
18 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT, KC_DEL ,
19 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, MO(2),
20 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT
21 ),
22
23 [1] = LAYOUT_60_all(
24 KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR,
25 KC_CAPS, KC_TRNS, KC_UP , KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_VOLD, KC_VOLU, KC_MUTE,
26 KC_TRNS, KC_LEFT, KC_DOWN, KC_RGHT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_PSCR,
27 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_RSFT, KC_PGUP, KC_TRNS,
28 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_HOME, KC_PGDN, KC_END
29 ),
30
31 [2] = LAYOUT_60_all(
32 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
33 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
34 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
37 ),
38
39 [3] = LAYOUT_60_all(
40 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
41 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
42 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
43 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
44 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
45 )
46};
diff --git a/keyboards/xelus/dawn60/keymaps/via/rules.mk b/keyboards/xelus/dawn60/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/xelus/dawn60/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/xelus/dawn60/readme.md b/keyboards/xelus/dawn60/readme.md
new file mode 100644
index 000000000..3409bac1e
--- /dev/null
+++ b/keyboards/xelus/dawn60/readme.md
@@ -0,0 +1,13 @@
1# Dawn60
2
3An in-switch RGB LED keyboard with RGB underglow.
4
5* Keyboard Maintainer: [Xelus22](https://github.com/Xelus22)
6* Hardware Supported: Dawn60
7* Hardware Availability: [Keyboard Treehouse](https://keyboardtreehouse.com)
8
9Make example for this keyboard (after setting up your build environment):
10
11 make xelus/dawn60:default
12
13See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). \ No newline at end of file
diff --git a/keyboards/xelus/dawn60/rules.mk b/keyboards/xelus/dawn60/rules.mk
new file mode 100644
index 000000000..3ac5f9977
--- /dev/null
+++ b/keyboards/xelus/dawn60/rules.mk
@@ -0,0 +1,49 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5# Teensy halfkay
6# Pro Micro caterina
7# Atmel DFU atmel-dfu
8# LUFA DFU lufa-dfu
9# QMK DFU qmk-dfu
10# ATmega32A bootloadHID
11# ATmega328P USBasp
12BOOTLOADER = atmel-dfu
13
14# Do not put the microcontroller into power saving mode
15# when we get USB suspend event. We want it to keep updating
16# backlight effects.
17OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
18
19# Build Options
20# change yes to no to disable
21#
22BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
23MOUSEKEY_ENABLE = no # Mouse keys
24EXTRAKEY_ENABLE = yes # Audio control and System control
25CONSOLE_ENABLE = no # Console for debug
26COMMAND_ENABLE = no # Commands for debug and configuration
27# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
28SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
29# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
30NKRO_ENABLE = yes # USB Nkey Rollover
31BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
32MIDI_ENABLE = no # MIDI support
33UNICODE_ENABLE = no # Unicode
34BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
35AUDIO_ENABLE = no # Audio output on port C6
36FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
37RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. - We have custom RGB underglow
38
39CIE1931_CURVE = yes
40
41
42# project specific files
43SRC += keyboards/wilba_tech/wt_main.c \
44 keyboards/wilba_tech/wt_rgb_backlight.c \
45 quantum/color.c \
46 drivers/issi/is31fl3731.c \
47 ws2812.c
48
49QUANTUM_LIB_SRC += i2c_master.c