aboutsummaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorRyan Smith <57497110+ryanstevensmith@users.noreply.github.com>2022-01-14 04:42:11 +0000
committerGitHub <noreply@github.com>2022-01-13 20:42:11 -0800
commitfd4adbc0cc291a71a8f1e846f0b9b0bd81c1089e (patch)
tree5ee3a829a78f5bc4767829c8bf4e814ae284fcff /keyboards
parente865cab48ec25c2fff958b23d89b1f86755d445c (diff)
downloadqmk_firmware-fd4adbc0cc291a71a8f1e846f0b9b0bd81c1089e.tar.gz
qmk_firmware-fd4adbc0cc291a71a8f1e846f0b9b0bd81c1089e.zip
[keyboard] Adding Atlas_65 (#15839)
Co-authored-by: Drashna Jaelre <drashna@live.com>
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/atlas_65/atlas_65.c16
-rw-r--r--keyboards/atlas_65/atlas_65.h42
-rw-r--r--keyboards/atlas_65/config.h130
-rw-r--r--keyboards/atlas_65/info.json82
-rw-r--r--keyboards/atlas_65/keymaps/default/keymap.c49
-rw-r--r--keyboards/atlas_65/keymaps/default/readme.md1
-rw-r--r--keyboards/atlas_65/keymaps/via/keymap.c49
-rw-r--r--keyboards/atlas_65/keymaps/via/rules.mk2
-rw-r--r--keyboards/atlas_65/readme.md26
-rw-r--r--keyboards/atlas_65/rules.mk18
10 files changed, 415 insertions, 0 deletions
diff --git a/keyboards/atlas_65/atlas_65.c b/keyboards/atlas_65/atlas_65.c
new file mode 100644
index 000000000..536d8edf7
--- /dev/null
+++ b/keyboards/atlas_65/atlas_65.c
@@ -0,0 +1,16 @@
1/* Copyright 2020 Joshua Nguyen
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#include "atlas_65.h"
diff --git a/keyboards/atlas_65/atlas_65.h b/keyboards/atlas_65/atlas_65.h
new file mode 100644
index 000000000..c54140fd7
--- /dev/null
+++ b/keyboards/atlas_65/atlas_65.h
@@ -0,0 +1,42 @@
1/* Copyright 2020 Joshua Nguyen
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
20/* This a shortcut to help you visually see your layout.
21 *
22 * The first section contains all of the arguments representing the physical
23 * layout of the board and position of the keys.
24 *
25 * The second converts the arguments into a two-dimensional array which
26 * represents the switch matrix.
27 */
28#define XXX KC_NO
29#define LAYOUT( \
30 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, k0C, k0D, \
31 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, k1C, k1D, k1E, \
32 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, k2C, k2E, \
33 k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, k3D, k3E, \
34 k40, k42, k44, k45, k46, k47, k49, k4C, k4D, k4E \
35) \
36{ \
37 { k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0A, k0B, k0C, k0D, XXX }, \
38 { k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1A, k1B, k1C, k1D, k1E }, \
39 { k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2A, k2B, k2C, XXX, k2E }, \
40 { k30, k31, k32, k33, k34, k35, k36, k37, k38, k39, k3A, k3B, XXX, k3D, k3E }, \
41 { k40, XXX, k42, XXX, k44, k45, k46, k47, XXX, k49, XXX, XXX, k4C, k4D, k4E } \
42}
diff --git a/keyboards/atlas_65/config.h b/keyboards/atlas_65/config.h
new file mode 100644
index 000000000..d96c2c397
--- /dev/null
+++ b/keyboards/atlas_65/config.h
@@ -0,0 +1,130 @@
1/* Copyright 2020 Joshua Nguyen
2
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program. If not, see <http://www.gnu.org/licenses/>.
15*/
16
17#pragma once
18
19#include "config_common.h"
20
21/* USB Device descriptor parameter */
22#define VENDOR_ID 0x6565
23#define PRODUCT_ID 0x1000
24#define DEVICE_VER 0x0001
25#define MANUFACTURER Joshua Nguyen
26#define PRODUCT atlas_65
27
28/* key matrix size */
29#define MATRIX_ROWS 5
30#define MATRIX_COLS 15
31
32/*
33 * Keyboard Matrix Assignments
34 *
35 * Change this to how you wired your keyboard
36 * COLS: AVR pins used for columns, left to right
37 * ROWS: AVR pins used for rows, top to bottom
38 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
39 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
40 *
41*/
42#define MATRIX_ROW_PINS { D0, D1, D2, D3, D5 }
43#define MATRIX_COL_PINS { F0, F1, E6, C7, C6, B6, D4, B1, B0, B7, B5, B4, D7, D6, B3 }
44#define UNUSED_PINS
45
46/* COL2ROW, ROW2COL*/
47#define DIODE_DIRECTION COL2ROW
48
49// #define BACKLIGHT_PIN B7
50// #define BACKLIGHT_BREATHING
51// #define BACKLIGHT_LEVELS 3
52
53// #define RGB_DI_PIN E2
54// #ifdef RGB_DI_PIN
55// #define RGBLED_NUM 16
56// #define RGBLIGHT_HUE_STEP 8
57// #define RGBLIGHT_SAT_STEP 8
58// #define RGBLIGHT_VAL_STEP 8
59// #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
60// #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
61// /*== all animations enable ==*/
62// #define RGBLIGHT_ANIMATIONS
63// /*== or choose animations ==*/
64// #define RGBLIGHT_EFFECT_BREATHING
65// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
66// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
67// #define RGBLIGHT_EFFECT_SNAKE
68// #define RGBLIGHT_EFFECT_KNIGHT
69// #define RGBLIGHT_EFFECT_CHRISTMAS
70// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
71// #define RGBLIGHT_EFFECT_RGB_TEST
72// #define RGBLIGHT_EFFECT_ALTERNATING
73// #endif
74
75/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
76#define DEBOUNCE 5
77
78/* define if matrix has ghost (lacks anti-ghosting diodes) */
79//#define MATRIX_HAS_GHOST
80
81/* number of backlight levels */
82
83/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
84#define LOCKING_SUPPORT_ENABLE
85/* Locking resynchronize hack */
86#define LOCKING_RESYNC_ENABLE
87
88/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
89 * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
90 */
91// #define GRAVE_ESC_CTRL_OVERRIDE
92
93/*
94 * Force NKRO
95 *
96 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
97 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
98 * makefile for this to work.)
99 *
100 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
101 * until the next keyboard reset.
102 *
103 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
104 * fully operational during normal computer usage.
105 *
106 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
107 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
108 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
109 * power-up.
110 *
111 */
112//#define FORCE_NKRO
113
114/*
115 * Feature disable options
116 * These options are also useful to firmware size reduction.
117 */
118
119/* disable debug print */
120//#define NO_DEBUG
121
122/* disable print */
123//#define NO_PRINT
124
125/* disable action features */
126//#define NO_ACTION_LAYER
127//#define NO_ACTION_TAPPING
128//#define NO_ACTION_ONESHOT
129//#define NO_ACTION_MACRO
130//#define NO_ACTION_FUNCTION
diff --git a/keyboards/atlas_65/info.json b/keyboards/atlas_65/info.json
new file mode 100644
index 000000000..e95b25511
--- /dev/null
+++ b/keyboards/atlas_65/info.json
@@ -0,0 +1,82 @@
1{
2 "keyboard_name": "atlas-65",
3 "url": "https://github.com/ryanstevensmith/atlas-65",
4 "maintainer": "Joshua Nguyen",
5 "layouts": {
6 "LAYOUT": {
7 "layout": [
8 {"x":0, "y":0},
9 {"x":1, "y":0},
10 {"x":2, "y":0},
11 {"x":3, "y":0},
12 {"x":4, "y":0},
13 {"x":5, "y":0},
14 {"x":6, "y":0},
15 {"x":9, "y":0},
16 {"x":10, "y":0},
17 {"x":11, "y":0},
18 {"x":12, "y":0},
19 {"x":13, "y":0},
20 {"x":14, "y":0},
21 {"x":15, "y":0, "w":2},
22 {"x":17.3, "y":0},
23
24 {"x":0, "y":1, "w":1.5},
25 {"x":1.5, "y":1},
26 {"x":2.5, "y":1},
27 {"x":3.5, "y":1},
28 {"x":4.5, "y":1},
29 {"x":5.5, "y":1},
30 {"x":8.5, "y":1},
31 {"x":9.5, "y":1},
32 {"x":10.5, "y":1},
33 {"x":11.5, "y":1},
34 {"x":12.5, "y":1},
35 {"x":13.5, "y":1},
36 {"x":14.5, "y":1},
37 {"x":15.5, "y":1, "w":1.5},
38 {"x":17.3, "y":1},
39
40 {"x":0, "y":2, "w":1.75},
41 {"x":1.75, "y":2},
42 {"x":2.75, "y":2},
43 {"x":3.75, "y":2},
44 {"x":4.75, "y":2},
45 {"x":5.75, "y":2},
46 {"x":8.75, "y":2},
47 {"x":9.75, "y":2},
48 {"x":10.75, "y":2},
49 {"x":11.75, "y":2},
50 {"x":12.75, "y":2},
51 {"x":13.75, "y":2},
52 {"x":14.75, "y":2, "w":2.25},
53 {"x":17.3, "y":2},
54
55 {"x":0, "y":3, "w":2.25},
56 {"x":2.25, "y":3},
57 {"x":3.25, "y":3},
58 {"x":4.25, "y":3},
59 {"x":5.25, "y":3},
60 {"x":6.25, "y":3},
61 {"x":8.25, "y":3},
62 {"x":9.25, "y":3},
63 {"x":10.25, "y":3},
64 {"x":11.25, "y":3},
65 {"x":12.25, "y":3},
66 {"x":13.25, "y":3},
67 {"x":14.25, "y":3, "w":1.75},
68 {"x":16.3, "y":3.25},
69
70 {"x":0, "y":4, "w":1.5},
71 {"x":3.25, "y":4, "w":1.5},
72 {"x":4.75, "y":4, "w":2},
73 {"x":6.75, "y":4, "w":1.25},
74 {"x":8.75, "y":4, "w":2.75},
75 {"x":11.5, "y":4, "w":1.5},
76 {"x":15.3, "y":4.25},
77 {"x":16.3, "y":4.25},
78 {"x":17.3, "y":4.25}
79 ]
80 }
81 }
82}
diff --git a/keyboards/atlas_65/keymaps/default/keymap.c b/keyboards/atlas_65/keymaps/default/keymap.c
new file mode 100644
index 000000000..55406a165
--- /dev/null
+++ b/keyboards/atlas_65/keymaps/default/keymap.c
@@ -0,0 +1,49 @@
1/* Copyright 2020 Joshua Nguyen
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#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 [0] = LAYOUT(
20 KC_GESC, 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_BSPC,
21 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_BSLS, KC_PGUP,
22 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_PGDN,
23 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_LNUM,
24 KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_B, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
25 ) ,
26
27 [1] = LAYOUT(
28 _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______,
29 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, KC_DEL, _______,
30 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
31 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
32 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
33 ) ,
34
35 [2] = LAYOUT(
36 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
37 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
38 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
39 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
40 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
41 ) ,
42 [3] = LAYOUT(
43 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
46 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
47 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
48 )
49} ;
diff --git a/keyboards/atlas_65/keymaps/default/readme.md b/keyboards/atlas_65/keymaps/default/readme.md
new file mode 100644
index 000000000..5086db264
--- /dev/null
+++ b/keyboards/atlas_65/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for atlas-65 \ No newline at end of file
diff --git a/keyboards/atlas_65/keymaps/via/keymap.c b/keyboards/atlas_65/keymaps/via/keymap.c
new file mode 100644
index 000000000..d519682cc
--- /dev/null
+++ b/keyboards/atlas_65/keymaps/via/keymap.c
@@ -0,0 +1,49 @@
1/* Copyright 2020 Joshua Nguyen
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#include QMK_KEYBOARD_H
17
18const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19 [0] = LAYOUT(
20 KC_GESC, 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_BSPC,
21 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_BSLS, KC_PGUP,
22 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_PGDN,
23 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_LNUM,
24 KC_LCTL, KC_LALT, KC_SPC, KC_LGUI, KC_B, KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT
25 ) ,
26
27 [1] = LAYOUT(
28 KC_TRNS, 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_TRNS,
29 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_DEL, KC_TRNS,
30 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,
31 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,
32 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
33 ) ,
34
35 [2] = LAYOUT(
36 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,
37 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, KC_TRNS,
38 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,
39 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,
40 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
41 ) ,
42 [3] = LAYOUT(
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, KC_TRNS,
44 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, KC_TRNS,
45 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,
46 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,
47 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS
48 )
49} ;
diff --git a/keyboards/atlas_65/keymaps/via/rules.mk b/keyboards/atlas_65/keymaps/via/rules.mk
new file mode 100644
index 000000000..43061db1d
--- /dev/null
+++ b/keyboards/atlas_65/keymaps/via/rules.mk
@@ -0,0 +1,2 @@
1VIA_ENABLE = yes
2LTO_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/atlas_65/readme.md b/keyboards/atlas_65/readme.md
new file mode 100644
index 000000000..3bc401db3
--- /dev/null
+++ b/keyboards/atlas_65/readme.md
@@ -0,0 +1,26 @@
1
2# atlas_65
3
4A version of an Alice Keyboard with a full sized backspace and an extra B key.
5
6* Keyboard Maintainer: Joshua Nguyen
7* Hardware Supported: atlas-65 keyboards
8* Hardware Availability: Message Josh
9
10Make example for this keyboard (after setting up your build environment):
11
12 make atlas_65:default
13
14Flashing example for this keyboard:
15
16 make atlas_65:default:flash
17
18See 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).
19
20## Bootloader
21
22Enter the bootloader in 3 ways:
23
24* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard
25* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead
26* **Keycode in layout**: Press the key mapped to `RESET` if it is available \ No newline at end of file
diff --git a/keyboards/atlas_65/rules.mk b/keyboards/atlas_65/rules.mk
new file mode 100644
index 000000000..476cf49f2
--- /dev/null
+++ b/keyboards/atlas_65/rules.mk
@@ -0,0 +1,18 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15NKRO_ENABLE = yes # Enable N-Key Rollover
16BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
17RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
18AUDIO_ENABLE = no # Audio output