aboutsummaryrefslogtreecommitdiff
path: root/keyboards/business_card
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/business_card')
-rw-r--r--keyboards/business_card/alpha/alpha.c51
-rw-r--r--keyboards/business_card/alpha/alpha.h35
-rw-r--r--keyboards/business_card/alpha/config.h243
-rw-r--r--keyboards/business_card/alpha/keymaps/default/config.h22
-rw-r--r--keyboards/business_card/alpha/keymaps/default/keymap.c47
-rw-r--r--keyboards/business_card/alpha/keymaps/default/readme.md1
-rw-r--r--keyboards/business_card/alpha/rules.mk81
-rw-r--r--keyboards/business_card/beta/beta.c51
-rw-r--r--keyboards/business_card/beta/beta.h37
-rw-r--r--keyboards/business_card/beta/config.h243
-rw-r--r--keyboards/business_card/beta/keymaps/default/config.h23
-rw-r--r--keyboards/business_card/beta/keymaps/default/keymap.c50
-rw-r--r--keyboards/business_card/beta/keymaps/default/readme.md1
-rw-r--r--keyboards/business_card/beta/rules.mk81
-rw-r--r--keyboards/business_card/business_card.c51
-rw-r--r--keyboards/business_card/business_card.h25
-rw-r--r--keyboards/business_card/config.h0
-rw-r--r--keyboards/business_card/info.json0
-rw-r--r--keyboards/business_card/readme.md15
-rw-r--r--keyboards/business_card/rules.mk83
20 files changed, 1140 insertions, 0 deletions
diff --git a/keyboards/business_card/alpha/alpha.c b/keyboards/business_card/alpha/alpha.c
new file mode 100644
index 000000000..3d2d1de77
--- /dev/null
+++ b/keyboards/business_card/alpha/alpha.c
@@ -0,0 +1,51 @@
1/* Copyright 2019 kakunpc
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 "alpha.h"
17
18// Optional override functions below.
19// You can leave any or all of these undefined.
20// These are only required if you want to perform custom actions.
21
22/*
23
24void matrix_init_kb(void) {
25 // put your keyboard start-up code here
26 // runs once when the firmware starts up
27
28 matrix_init_user();
29}
30
31void matrix_scan_kb(void) {
32 // put your looping keyboard code here
33 // runs every cycle (a lot)
34
35 matrix_scan_user();
36}
37
38bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
39 // put your per-action keyboard code here
40 // runs for every action, just before processing by the firmware
41
42 return process_record_user(keycode, record);
43}
44
45void led_set_kb(uint8_t usb_led) {
46 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
47
48 led_set_user(usb_led);
49}
50
51*/
diff --git a/keyboards/business_card/alpha/alpha.h b/keyboards/business_card/alpha/alpha.h
new file mode 100644
index 000000000..980757689
--- /dev/null
+++ b/keyboards/business_card/alpha/alpha.h
@@ -0,0 +1,35 @@
1/* Copyright 2019 kakunpc
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 LAYOUT( \
29 k00, k01, k02, \
30 k10, k11, k12 \
31) \
32{ \
33 { k00, k01, k02 }, \
34 { k10, k11, k12 }, \
35}
diff --git a/keyboards/business_card/alpha/config.h b/keyboards/business_card/alpha/config.h
new file mode 100644
index 000000000..e0324d654
--- /dev/null
+++ b/keyboards/business_card/alpha/config.h
@@ -0,0 +1,243 @@
1/*
2Copyright 2019 kakunpc
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0xFEED
24#define PRODUCT_ID 0x0000
25#define DEVICE_VER 0x0001
26#define MANUFACTURER kakunpc
27#define PRODUCT business_card
28#define DESCRIPTION A custom keyboard
29
30/* key matrix size */
31#define MATRIX_ROWS 2
32#define MATRIX_COLS 3
33
34/*
35 * Keyboard Matrix Assignments
36 *
37 * Change this to how you wired your keyboard
38 * COLS: AVR pins used for columns, left to right
39 * ROWS: AVR pins used for rows, top to bottom
40 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
41 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
42 *
43*/
44#define MATRIX_ROW_PINS { B2, B6 }
45#define MATRIX_COL_PINS { E6, B4, B5 }
46#define UNUSED_PINS
47
48/* COL2ROW, ROW2COL*/
49#define DIODE_DIRECTION COL2ROW
50
51/*
52 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
53 */
54#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
55
56// #define BACKLIGHT_PIN B7
57// #define BACKLIGHT_BREATHING
58// #define BACKLIGHT_LEVELS 3
59
60#define RGB_DI_PIN D3
61#ifdef RGB_DI_PIN
62 #define RGBLED_NUM 6
63 #define RGBLIGHT_HUE_STEP 8
64 #define RGBLIGHT_SAT_STEP 8
65 #define RGBLIGHT_VAL_STEP 8
66 #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
67 #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
68// /*== all animations enable ==*/
69// #define RGBLIGHT_ANIMATIONS
70// /*== or choose animations ==*/
71// #define RGBLIGHT_EFFECT_BREATHING
72// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
73// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
74// #define RGBLIGHT_EFFECT_SNAKE
75// #define RGBLIGHT_EFFECT_KNIGHT
76// #define RGBLIGHT_EFFECT_CHRISTMAS
77// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
78// #define RGBLIGHT_EFFECT_RGB_TEST
79// #define RGBLIGHT_EFFECT_ALTERNATING
80#endif
81
82/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
83#define DEBOUNCE 5
84
85/* define if matrix has ghost (lacks anti-ghosting diodes) */
86//#define MATRIX_HAS_GHOST
87
88/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
89#define LOCKING_SUPPORT_ENABLE
90/* Locking resynchronize hack */
91#define LOCKING_RESYNC_ENABLE
92
93/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
94 * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
95 */
96// #define GRAVE_ESC_CTRL_OVERRIDE
97
98/*
99 * Force NKRO
100 *
101 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
102 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
103 * makefile for this to work.)
104 *
105 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
106 * until the next keyboard reset.
107 *
108 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
109 * fully operational during normal computer usage.
110 *
111 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
112 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
113 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
114 * power-up.
115 *
116 */
117//#define FORCE_NKRO
118
119/*
120 * Magic Key Options
121 *
122 * Magic keys are hotkey commands that allow control over firmware functions of
123 * the keyboard. They are best used in combination with the HID Listen program,
124 * found here: https://www.pjrc.com/teensy/hid_listen.html
125 *
126 * The options below allow the magic key functionality to be changed. This is
127 * useful if your keyboard/keypad is missing keys and you want magic key support.
128 *
129 */
130
131/* key combination for magic key command */
132/* defined by default; to change, uncomment and set to the combination you want */
133// #define IS_COMMAND() (get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))
134
135/* control how magic key switches layers */
136//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
137//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
138//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
139
140/* override magic key keymap */
141//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
142//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
143//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
144//#define MAGIC_KEY_HELP H
145//#define MAGIC_KEY_HELP_ALT SLASH
146//#define MAGIC_KEY_DEBUG D
147//#define MAGIC_KEY_DEBUG_MATRIX X
148//#define MAGIC_KEY_DEBUG_KBD K
149//#define MAGIC_KEY_DEBUG_MOUSE M
150//#define MAGIC_KEY_VERSION V
151//#define MAGIC_KEY_STATUS S
152//#define MAGIC_KEY_CONSOLE C
153//#define MAGIC_KEY_LAYER0 0
154//#define MAGIC_KEY_LAYER0_ALT GRAVE
155//#define MAGIC_KEY_LAYER1 1
156//#define MAGIC_KEY_LAYER2 2
157//#define MAGIC_KEY_LAYER3 3
158//#define MAGIC_KEY_LAYER4 4
159//#define MAGIC_KEY_LAYER5 5
160//#define MAGIC_KEY_LAYER6 6
161//#define MAGIC_KEY_LAYER7 7
162//#define MAGIC_KEY_LAYER8 8
163//#define MAGIC_KEY_LAYER9 9
164//#define MAGIC_KEY_BOOTLOADER B
165//#define MAGIC_KEY_BOOTLOADER_ALT ESC
166//#define MAGIC_KEY_LOCK CAPS
167//#define MAGIC_KEY_EEPROM E
168//#define MAGIC_KEY_EEPROM_CLEAR BSPACE
169//#define MAGIC_KEY_NKRO N
170//#define MAGIC_KEY_SLEEP_LED Z
171
172/*
173 * Feature disable options
174 * These options are also useful to firmware size reduction.
175 */
176
177/* disable debug print */
178//#define NO_DEBUG
179
180/* disable print */
181//#define NO_PRINT
182
183/* disable action features */
184//#define NO_ACTION_LAYER
185//#define NO_ACTION_TAPPING
186//#define NO_ACTION_ONESHOT
187//#define NO_ACTION_MACRO
188//#define NO_ACTION_FUNCTION
189
190/*
191 * MIDI options
192 */
193
194/* Prevent use of disabled MIDI features in the keymap */
195//#define MIDI_ENABLE_STRICT 1
196
197/* enable basic MIDI features:
198 - MIDI notes can be sent when in Music mode is on
199*/
200//#define MIDI_BASIC
201
202/* enable advanced MIDI features:
203 - MIDI notes can be added to the keymap
204 - Octave shift and transpose
205 - Virtual sustain, portamento, and modulation wheel
206 - etc.
207*/
208//#define MIDI_ADVANCED
209
210/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
211//#define MIDI_TONE_KEYCODE_OCTAVES 1
212
213/*
214 * HD44780 LCD Display Configuration
215 */
216/*
217#define LCD_LINES 2 //< number of visible lines of the display
218#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
219
220#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
221
222#if LCD_IO_MODE
223#define LCD_PORT PORTB //< port for the LCD lines
224#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
225#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
226#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
227#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
228#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
229#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
230#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
231#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
232#define LCD_RS_PORT LCD_PORT //< port for RS line
233#define LCD_RS_PIN 3 //< pin for RS line
234#define LCD_RW_PORT LCD_PORT //< port for RW line
235#define LCD_RW_PIN 2 //< pin for RW line
236#define LCD_E_PORT LCD_PORT //< port for Enable line
237#define LCD_E_PIN 1 //< pin for Enable line
238#endif
239*/
240
241/* Bootmagic Lite key configuration */
242// #define BOOTMAGIC_LITE_ROW 0
243// #define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/business_card/alpha/keymaps/default/config.h b/keyboards/business_card/alpha/keymaps/default/config.h
new file mode 100644
index 000000000..7c15789bd
--- /dev/null
+++ b/keyboards/business_card/alpha/keymaps/default/config.h
@@ -0,0 +1,22 @@
1/* Copyright 2019 kakunpc
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
17#pragma once
18
19// place overrides here
20#ifdef RGB_DI_PIN
21 #define RGBLIGHT_ANIMATIONS
22#endif
diff --git a/keyboards/business_card/alpha/keymaps/default/keymap.c b/keyboards/business_card/alpha/keymaps/default/keymap.c
new file mode 100644
index 000000000..4c7b4237c
--- /dev/null
+++ b/keyboards/business_card/alpha/keymaps/default/keymap.c
@@ -0,0 +1,47 @@
1/* Copyright 2019 kakunpc
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
18// Defines the keycodes used by our macros in process_record_user
19
20const uint16_t PROGMEM
21keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
22[0] =
23LAYOUT(/* Base */
24 KC_1, KC_2, KC_3,
25 KC_4, KC_5, KC_6
26),
27};
28
29bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; }
30
31void led_set_user(uint8_t usb_led) {}
32
33void keyboard_post_init_user(void) {
34 rgblight_enable_noeeprom();
35 rgblight_mode_noeeprom(RGBLIGHT_MODE_RAINBOW_MOOD);
36}
37
38#ifdef OLED_DRIVER_ENABLE
39static void render_logo(void) {
40 static const char PROGMEM qmk_logo[] = {0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94,
41 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4,
42 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0};
43
44 oled_write_P(qmk_logo, false);
45}
46void oled_task_user(void) { render_logo(); }
47#endif
diff --git a/keyboards/business_card/alpha/keymaps/default/readme.md b/keyboards/business_card/alpha/keymaps/default/readme.md
new file mode 100644
index 000000000..22cc77eeb
--- /dev/null
+++ b/keyboards/business_card/alpha/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for business_card \ No newline at end of file
diff --git a/keyboards/business_card/alpha/rules.mk b/keyboards/business_card/alpha/rules.mk
new file mode 100644
index 000000000..8bb38a514
--- /dev/null
+++ b/keyboards/business_card/alpha/rules.mk
@@ -0,0 +1,81 @@
1# MCU name
2MCU = atmega32u4
3
4# Processor frequency.
5# This will define a symbol, F_CPU, in all source code files equal to the
6# processor frequency in Hz. You can then use this symbol in your source code to
7# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
8# automatically to create a 32-bit value in your source code.
9#
10# This will be an integer division of F_USB below, as it is sourced by
11# F_USB after it has run through any CPU prescalers. Note that this value
12# does not *change* the processor frequency - it should merely be updated to
13# reflect the processor speed set externally so that the code can use accurate
14# software delays.
15F_CPU = 16000000
16
17
18#
19# LUFA specific
20#
21# Target architecture (see library "Board Types" documentation).
22ARCH = AVR8
23
24# Input clock frequency.
25# This will define a symbol, F_USB, in all source code files equal to the
26# input clock frequency (before any prescaling is performed) in Hz. This value may
27# differ from F_CPU if prescaling is used on the latter, and is required as the
28# raw input clock is fed directly to the PLL sections of the AVR for high speed
29# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
30# at the end, this will be done automatically to create a 32-bit value in your
31# source code.
32#
33# If no clock division is performed on the input clock inside the AVR (via the
34# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
35F_USB = $(F_CPU)
36
37# Interrupt driven control endpoint task(+60)
38OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
39
40
41# Bootloader selection
42# Teensy halfkay
43# Pro Micro caterina
44# Atmel DFU atmel-dfu
45# LUFA DFU lufa-dfu
46# QMK DFU qmk-dfu
47# atmega32a bootloadHID
48BOOTLOADER = atmel-dfu
49
50
51# If you don't know the bootloader type, then you can specify the
52# Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line
53# Teensy halfKay 512
54# Teensy++ halfKay 1024
55# Atmel DFU loader 4096
56# LUFA bootloader 4096
57# USBaspLoader 2048
58# OPT_DEFS += -DBOOTLOADER_SIZE=4096
59
60
61# Build Options
62# change yes to no to disable
63#
64BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
65MOUSEKEY_ENABLE = no # Mouse keys(+4700)
66EXTRAKEY_ENABLE = no # Audio control and System control(+450)
67CONSOLE_ENABLE = no # Console for debug(+400)
68COMMAND_ENABLE = no # Commands for debug and configuration
69# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
70SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
71# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
72NKRO_ENABLE = no # USB Nkey Rollover
73BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
74RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
75MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
76UNICODE_ENABLE = no # Unicode
77BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
78AUDIO_ENABLE = no # Audio output on port C6
79FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
80HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400)
81OLED_DRIVER_ENABLE = yes
diff --git a/keyboards/business_card/beta/beta.c b/keyboards/business_card/beta/beta.c
new file mode 100644
index 000000000..c43be6c16
--- /dev/null
+++ b/keyboards/business_card/beta/beta.c
@@ -0,0 +1,51 @@
1/* Copyright 2019 kakunpc
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 "beta.h"
17
18// Optional override functions below.
19// You can leave any or all of these undefined.
20// These are only required if you want to perform custom actions.
21
22/*
23
24void matrix_init_kb(void) {
25 // put your keyboard start-up code here
26 // runs once when the firmware starts up
27
28 matrix_init_user();
29}
30
31void matrix_scan_kb(void) {
32 // put your looping keyboard code here
33 // runs every cycle (a lot)
34
35 matrix_scan_user();
36}
37
38bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
39 // put your per-action keyboard code here
40 // runs for every action, just before processing by the firmware
41
42 return process_record_user(keycode, record);
43}
44
45void led_set_kb(uint8_t usb_led) {
46 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
47
48 led_set_user(usb_led);
49}
50
51*/
diff --git a/keyboards/business_card/beta/beta.h b/keyboards/business_card/beta/beta.h
new file mode 100644
index 000000000..21a334e8a
--- /dev/null
+++ b/keyboards/business_card/beta/beta.h
@@ -0,0 +1,37 @@
1/* Copyright 2019 kakunpc
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 LAYOUT( \
29 k00, k01, \
30 k10, k11, \
31 k20, k21 \
32) \
33{ \
34 { k21, k20 }, \
35 { k11, k10 }, \
36 { k01, k00 }, \
37}
diff --git a/keyboards/business_card/beta/config.h b/keyboards/business_card/beta/config.h
new file mode 100644
index 000000000..fc6514982
--- /dev/null
+++ b/keyboards/business_card/beta/config.h
@@ -0,0 +1,243 @@
1/*
2Copyright 2019 kakunpc
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0xFEED
24#define PRODUCT_ID 0x0000
25#define DEVICE_VER 0x0001
26#define MANUFACTURER kakunpc
27#define PRODUCT business_card
28#define DESCRIPTION A custom keyboard
29
30/* key matrix size */
31#define MATRIX_ROWS 3
32#define MATRIX_COLS 2
33
34/*
35 * Keyboard Matrix Assignments
36 *
37 * Change this to how you wired your keyboard
38 * COLS: AVR pins used for columns, left to right
39 * ROWS: AVR pins used for rows, top to bottom
40 * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
41 * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
42 *
43*/
44#define MATRIX_ROW_PINS { B3, B2, B6 }
45#define MATRIX_COL_PINS { B4, B5 }
46#define UNUSED_PINS
47
48/* COL2ROW, ROW2COL*/
49#define DIODE_DIRECTION COL2ROW
50
51/*
52 * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, and define SOFT_SERIAL_PIN.
53 */
54#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6
55
56// #define BACKLIGHT_PIN B7
57// #define BACKLIGHT_BREATHING
58// #define BACKLIGHT_LEVELS 3
59
60#define RGB_DI_PIN D3
61#ifdef RGB_DI_PIN
62 #define RGBLED_NUM 6
63 #define RGBLIGHT_HUE_STEP 8
64 #define RGBLIGHT_SAT_STEP 8
65 #define RGBLIGHT_VAL_STEP 8
66 #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
67 #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
68// /*== all animations enable ==*/
69// #define RGBLIGHT_ANIMATIONS
70// /*== or choose animations ==*/
71// #define RGBLIGHT_EFFECT_BREATHING
72// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
73// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
74// #define RGBLIGHT_EFFECT_SNAKE
75// #define RGBLIGHT_EFFECT_KNIGHT
76// #define RGBLIGHT_EFFECT_CHRISTMAS
77// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
78// #define RGBLIGHT_EFFECT_RGB_TEST
79// #define RGBLIGHT_EFFECT_ALTERNATING
80#endif
81
82/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
83#define DEBOUNCE 5
84
85/* define if matrix has ghost (lacks anti-ghosting diodes) */
86//#define MATRIX_HAS_GHOST
87
88/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
89#define LOCKING_SUPPORT_ENABLE
90/* Locking resynchronize hack */
91#define LOCKING_RESYNC_ENABLE
92
93/* If defined, GRAVE_ESC will always act as ESC when CTRL is held.
94 * This is userful for the Windows task manager shortcut (ctrl+shift+esc).
95 */
96// #define GRAVE_ESC_CTRL_OVERRIDE
97
98/*
99 * Force NKRO
100 *
101 * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
102 * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
103 * makefile for this to work.)
104 *
105 * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
106 * until the next keyboard reset.
107 *
108 * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
109 * fully operational during normal computer usage.
110 *
111 * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
112 * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
113 * bootmagic, NKRO mode will always be enabled until it is toggled again during a
114 * power-up.
115 *
116 */
117//#define FORCE_NKRO
118
119/*
120 * Magic Key Options
121 *
122 * Magic keys are hotkey commands that allow control over firmware functions of
123 * the keyboard. They are best used in combination with the HID Listen program,
124 * found here: https://www.pjrc.com/teensy/hid_listen.html
125 *
126 * The options below allow the magic key functionality to be changed. This is
127 * useful if your keyboard/keypad is missing keys and you want magic key support.
128 *
129 */
130
131/* key combination for magic key command */
132/* defined by default; to change, uncomment and set to the combination you want */
133// #define IS_COMMAND() (get_mods() == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)))
134
135/* control how magic key switches layers */
136//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
137//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
138//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
139
140/* override magic key keymap */
141//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
142//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
143//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
144//#define MAGIC_KEY_HELP H
145//#define MAGIC_KEY_HELP_ALT SLASH
146//#define MAGIC_KEY_DEBUG D
147//#define MAGIC_KEY_DEBUG_MATRIX X
148//#define MAGIC_KEY_DEBUG_KBD K
149//#define MAGIC_KEY_DEBUG_MOUSE M
150//#define MAGIC_KEY_VERSION V
151//#define MAGIC_KEY_STATUS S
152//#define MAGIC_KEY_CONSOLE C
153//#define MAGIC_KEY_LAYER0 0
154//#define MAGIC_KEY_LAYER0_ALT GRAVE
155//#define MAGIC_KEY_LAYER1 1
156//#define MAGIC_KEY_LAYER2 2
157//#define MAGIC_KEY_LAYER3 3
158//#define MAGIC_KEY_LAYER4 4
159//#define MAGIC_KEY_LAYER5 5
160//#define MAGIC_KEY_LAYER6 6
161//#define MAGIC_KEY_LAYER7 7
162//#define MAGIC_KEY_LAYER8 8
163//#define MAGIC_KEY_LAYER9 9
164//#define MAGIC_KEY_BOOTLOADER B
165//#define MAGIC_KEY_BOOTLOADER_ALT ESC
166//#define MAGIC_KEY_LOCK CAPS
167//#define MAGIC_KEY_EEPROM E
168//#define MAGIC_KEY_EEPROM_CLEAR BSPACE
169//#define MAGIC_KEY_NKRO N
170//#define MAGIC_KEY_SLEEP_LED Z
171
172/*
173 * Feature disable options
174 * These options are also useful to firmware size reduction.
175 */
176
177/* disable debug print */
178//#define NO_DEBUG
179
180/* disable print */
181//#define NO_PRINT
182
183/* disable action features */
184//#define NO_ACTION_LAYER
185//#define NO_ACTION_TAPPING
186//#define NO_ACTION_ONESHOT
187//#define NO_ACTION_MACRO
188//#define NO_ACTION_FUNCTION
189
190/*
191 * MIDI options
192 */
193
194/* Prevent use of disabled MIDI features in the keymap */
195//#define MIDI_ENABLE_STRICT 1
196
197/* enable basic MIDI features:
198 - MIDI notes can be sent when in Music mode is on
199*/
200//#define MIDI_BASIC
201
202/* enable advanced MIDI features:
203 - MIDI notes can be added to the keymap
204 - Octave shift and transpose
205 - Virtual sustain, portamento, and modulation wheel
206 - etc.
207*/
208//#define MIDI_ADVANCED
209
210/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
211//#define MIDI_TONE_KEYCODE_OCTAVES 1
212
213/*
214 * HD44780 LCD Display Configuration
215 */
216/*
217#define LCD_LINES 2 //< number of visible lines of the display
218#define LCD_DISP_LENGTH 16 //< visibles characters per line of the display
219
220#define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode
221
222#if LCD_IO_MODE
223#define LCD_PORT PORTB //< port for the LCD lines
224#define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0
225#define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1
226#define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2
227#define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3
228#define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0
229#define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1
230#define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2
231#define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3
232#define LCD_RS_PORT LCD_PORT //< port for RS line
233#define LCD_RS_PIN 3 //< pin for RS line
234#define LCD_RW_PORT LCD_PORT //< port for RW line
235#define LCD_RW_PIN 2 //< pin for RW line
236#define LCD_E_PORT LCD_PORT //< port for Enable line
237#define LCD_E_PIN 1 //< pin for Enable line
238#endif
239*/
240
241/* Bootmagic Lite key configuration */
242// #define BOOTMAGIC_LITE_ROW 0
243// #define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/business_card/beta/keymaps/default/config.h b/keyboards/business_card/beta/keymaps/default/config.h
new file mode 100644
index 000000000..e04ba7e4d
--- /dev/null
+++ b/keyboards/business_card/beta/keymaps/default/config.h
@@ -0,0 +1,23 @@
1/* Copyright 2019 kakunpc
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
17#pragma once
18
19// place overrides here
20
21#ifdef RGB_DI_PIN
22 #define RGBLIGHT_ANIMATIONS
23#endif \ No newline at end of file
diff --git a/keyboards/business_card/beta/keymaps/default/keymap.c b/keyboards/business_card/beta/keymaps/default/keymap.c
new file mode 100644
index 000000000..c317a236c
--- /dev/null
+++ b/keyboards/business_card/beta/keymaps/default/keymap.c
@@ -0,0 +1,50 @@
1/* Copyright 2019 kakunpc
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
19keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
20[0] =
21LAYOUT(/* Base */
22 KC_1, KC_2,
23 KC_3, KC_4,
24 KC_5, KC_6
25),
26};
27
28bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; }
29
30void matrix_init_user(void) {
31 rgblight_enable_noeeprom();
32 rgblight_mode_noeeprom(RGBLIGHT_MODE_RAINBOW_MOOD);
33}
34
35void matrix_scan_user(void) {}
36
37void led_set_user(uint8_t usb_led) {}
38
39void keyboard_post_init_user(void) {}
40
41#ifdef OLED_DRIVER_ENABLE
42static void render_logo(void) {
43 static const char PROGMEM qmk_logo[] = {0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94,
44 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4,
45 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0};
46
47 oled_write_P(qmk_logo, false);
48}
49void oled_task_user(void) { render_logo(); }
50#endif
diff --git a/keyboards/business_card/beta/keymaps/default/readme.md b/keyboards/business_card/beta/keymaps/default/readme.md
new file mode 100644
index 000000000..22cc77eeb
--- /dev/null
+++ b/keyboards/business_card/beta/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for business_card \ No newline at end of file
diff --git a/keyboards/business_card/beta/rules.mk b/keyboards/business_card/beta/rules.mk
new file mode 100644
index 000000000..8bb38a514
--- /dev/null
+++ b/keyboards/business_card/beta/rules.mk
@@ -0,0 +1,81 @@
1# MCU name
2MCU = atmega32u4
3
4# Processor frequency.
5# This will define a symbol, F_CPU, in all source code files equal to the
6# processor frequency in Hz. You can then use this symbol in your source code to
7# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
8# automatically to create a 32-bit value in your source code.
9#
10# This will be an integer division of F_USB below, as it is sourced by
11# F_USB after it has run through any CPU prescalers. Note that this value
12# does not *change* the processor frequency - it should merely be updated to
13# reflect the processor speed set externally so that the code can use accurate
14# software delays.
15F_CPU = 16000000
16
17
18#
19# LUFA specific
20#
21# Target architecture (see library "Board Types" documentation).
22ARCH = AVR8
23
24# Input clock frequency.
25# This will define a symbol, F_USB, in all source code files equal to the
26# input clock frequency (before any prescaling is performed) in Hz. This value may
27# differ from F_CPU if prescaling is used on the latter, and is required as the
28# raw input clock is fed directly to the PLL sections of the AVR for high speed
29# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
30# at the end, this will be done automatically to create a 32-bit value in your
31# source code.
32#
33# If no clock division is performed on the input clock inside the AVR (via the
34# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
35F_USB = $(F_CPU)
36
37# Interrupt driven control endpoint task(+60)
38OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
39
40
41# Bootloader selection
42# Teensy halfkay
43# Pro Micro caterina
44# Atmel DFU atmel-dfu
45# LUFA DFU lufa-dfu
46# QMK DFU qmk-dfu
47# atmega32a bootloadHID
48BOOTLOADER = atmel-dfu
49
50
51# If you don't know the bootloader type, then you can specify the
52# Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line
53# Teensy halfKay 512
54# Teensy++ halfKay 1024
55# Atmel DFU loader 4096
56# LUFA bootloader 4096
57# USBaspLoader 2048
58# OPT_DEFS += -DBOOTLOADER_SIZE=4096
59
60
61# Build Options
62# change yes to no to disable
63#
64BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
65MOUSEKEY_ENABLE = no # Mouse keys(+4700)
66EXTRAKEY_ENABLE = no # Audio control and System control(+450)
67CONSOLE_ENABLE = no # Console for debug(+400)
68COMMAND_ENABLE = no # Commands for debug and configuration
69# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
70SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
71# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
72NKRO_ENABLE = no # USB Nkey Rollover
73BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
74RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
75MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
76UNICODE_ENABLE = no # Unicode
77BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
78AUDIO_ENABLE = no # Audio output on port C6
79FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
80HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400)
81OLED_DRIVER_ENABLE = yes
diff --git a/keyboards/business_card/business_card.c b/keyboards/business_card/business_card.c
new file mode 100644
index 000000000..a57c00457
--- /dev/null
+++ b/keyboards/business_card/business_card.c
@@ -0,0 +1,51 @@
1/* Copyright 2019 kakunpc
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 "business_card.h"
17
18// Optional override functions below.
19// You can leave any or all of these undefined.
20// These are only required if you want to perform custom actions.
21
22/*
23
24void matrix_init_kb(void) {
25 // put your keyboard start-up code here
26 // runs once when the firmware starts up
27
28 matrix_init_user();
29}
30
31void matrix_scan_kb(void) {
32 // put your looping keyboard code here
33 // runs every cycle (a lot)
34
35 matrix_scan_user();
36}
37
38bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
39 // put your per-action keyboard code here
40 // runs for every action, just before processing by the firmware
41
42 return process_record_user(keycode, record);
43}
44
45void led_set_kb(uint8_t usb_led) {
46 // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
47
48 led_set_user(usb_led);
49}
50
51*/
diff --git a/keyboards/business_card/business_card.h b/keyboards/business_card/business_card.h
new file mode 100644
index 000000000..f330a0182
--- /dev/null
+++ b/keyboards/business_card/business_card.h
@@ -0,0 +1,25 @@
1/* Copyright 2019 kakunpc
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#ifdef KEYBOARD_business_card_alpha
19 #include "alpha.h"
20#endif
21#ifdef KEYBOARD_business_card_beta
22 #include "beta.h"
23#endif
24
25#include "quantum.h"
diff --git a/keyboards/business_card/config.h b/keyboards/business_card/config.h
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/keyboards/business_card/config.h
diff --git a/keyboards/business_card/info.json b/keyboards/business_card/info.json
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/keyboards/business_card/info.json
diff --git a/keyboards/business_card/readme.md b/keyboards/business_card/readme.md
new file mode 100644
index 000000000..c1bb32c9c
--- /dev/null
+++ b/keyboards/business_card/readme.md
@@ -0,0 +1,15 @@
1# business_card
2
3![business_card](imgur.com image replace me!)
4
5A short description of the keyboard/project
6
7Keyboard Maintainer: [kakunpc](https://github.com/kakunpc)
8Hardware Supported: The PCBs, controllers supported
9Hardware Availability: links to where you can find this hardware
10
11Make example for this keyboard (after setting up your build environment):
12
13 make business_card:default
14
15See 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).
diff --git a/keyboards/business_card/rules.mk b/keyboards/business_card/rules.mk
new file mode 100644
index 000000000..c12d659d0
--- /dev/null
+++ b/keyboards/business_card/rules.mk
@@ -0,0 +1,83 @@
1# MCU name
2#MCU = at90usb1286
3MCU = atmega32u4
4
5# Processor frequency.
6# This will define a symbol, F_CPU, in all source code files equal to the
7# processor frequency in Hz. You can then use this symbol in your source code to
8# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
9# automatically to create a 32-bit value in your source code.
10#
11# This will be an integer division of F_USB below, as it is sourced by
12# F_USB after it has run through any CPU prescalers. Note that this value
13# does not *change* the processor frequency - it should merely be updated to
14# reflect the processor speed set externally so that the code can use accurate
15# software delays.
16F_CPU = 16000000
17
18
19#
20# LUFA specific
21#
22# Target architecture (see library "Board Types" documentation).
23ARCH = AVR8
24
25# Input clock frequency.
26# This will define a symbol, F_USB, in all source code files equal to the
27# input clock frequency (before any prescaling is performed) in Hz. This value may
28# differ from F_CPU if prescaling is used on the latter, and is required as the
29# raw input clock is fed directly to the PLL sections of the AVR for high speed
30# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
31# at the end, this will be done automatically to create a 32-bit value in your
32# source code.
33#
34# If no clock division is performed on the input clock inside the AVR (via the
35# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
36F_USB = $(F_CPU)
37
38# Interrupt driven control endpoint task(+60)
39OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
40
41
42# Bootloader selection
43# Teensy halfkay
44# Pro Micro caterina
45# Atmel DFU atmel-dfu
46# LUFA DFU lufa-dfu
47# QMK DFU qmk-dfu
48# atmega32a bootloadHID
49BOOTLOADER = atmel-dfu
50
51
52# If you don't know the bootloader type, then you can specify the
53# Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line
54# Teensy halfKay 512
55# Teensy++ halfKay 1024
56# Atmel DFU loader 4096
57# LUFA bootloader 4096
58# USBaspLoader 2048
59# OPT_DEFS += -DBOOTLOADER_SIZE=4096
60
61
62# Build Options
63# change yes to no to disable
64#
65BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
66MOUSEKEY_ENABLE = no # Mouse keys(+4700)
67EXTRAKEY_ENABLE = no # Audio control and System control(+450)
68CONSOLE_ENABLE = no # Console for debug(+400)
69COMMAND_ENABLE = no # Commands for debug and configuration
70# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
71SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
72# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
73NKRO_ENABLE = no # USB Nkey Rollover
74BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
75RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
76MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
77UNICODE_ENABLE = no # Unicode
78BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
79AUDIO_ENABLE = no # Audio output on port C6
80FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
81HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400)
82
83DEFAULT_FOLDER = business_card/beta