diff options
author | Garret G <45295190+TheRoyalSweatshirt@users.noreply.github.com> | 2019-10-08 13:24:20 -0500 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-10-08 11:24:20 -0700 |
commit | 9fe7b406cb43e334d588e69b14c3fa41ae4c4925 (patch) | |
tree | 6d9a5f09156c6943f9b1bef8613c1d76b2e089a6 /keyboards/kingly_keys/smd_milk | |
parent | 19584b92c559b134401be1efa7a5f199eda12f89 (diff) | |
download | qmk_firmware-9fe7b406cb43e334d588e69b14c3fa41ae4c4925.tar.gz qmk_firmware-9fe7b406cb43e334d588e69b14c3fa41ae4c4925.zip |
[Keyboard] Move existing boards to Kingly_Keys and add more boards (#6879)
* try to fix and orginize to Kingly_Keys subfolder and add various keyboard support
* fixed layout nomenclature and rules.mk pref
* modified readme for smd_milk
* fixed layout name in little_foot.h
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* remove old stand-alone keyboard folders
* Fixed missing comma in littlefoot keymap
* remove OLED code in romac_plus.c
* Update rules.mk
* Update readme.md
* Apply suggestions from code review
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update rules.mk
* Update rules.mk
* Update keymap.c
* Update keymap.c
* Update keymap.c
* fix little_foot.h layouts, delete smd_milk readme.md
* Fix ALpha Edits
* Fix ALpha Edits p.2
* update little_foot.h
* fix little_foot.h p.2
* Update keyboards/kingly_keys/little_foot/little_foot.h
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/kingly_keys/little_foot/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Update keyboards/kingly_keys/romac_plus/keymaps/default/keymap.c
Co-Authored-By: Drashna Jaelre <drashna@live.com>
* Modify config.h for cleaned up PCB.
Diffstat (limited to 'keyboards/kingly_keys/smd_milk')
-rw-r--r-- | keyboards/kingly_keys/smd_milk/2_milk.c | 16 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/2_milk.h | 26 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/config.h | 56 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/info.json | 15 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/keymaps/default/keymap.c | 8 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/readme.md | 21 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/rules.mk | 26 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/smd_milk.c | 16 | ||||
-rw-r--r-- | keyboards/kingly_keys/smd_milk/smd_milk.h | 26 |
9 files changed, 210 insertions, 0 deletions
diff --git a/keyboards/kingly_keys/smd_milk/2_milk.c b/keyboards/kingly_keys/smd_milk/2_milk.c new file mode 100644 index 0000000000..95fa50e029 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/2_milk.c @@ -0,0 +1,16 @@ +/* Copyright 2019 Sebastian Williams + * + * 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 "smd_milk.h" diff --git a/keyboards/kingly_keys/smd_milk/2_milk.h b/keyboards/kingly_keys/smd_milk/2_milk.h new file mode 100644 index 0000000000..8f294817f9 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/2_milk.h @@ -0,0 +1,26 @@ +/* Copyright 2019 Sebastian Williams + * + * 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 "quantum.h" + +#define LAYOUT( \ + K00, \ + K01 \ +) { \ + { K00 }, \ + { K01 } \ +} diff --git a/keyboards/kingly_keys/smd_milk/config.h b/keyboards/kingly_keys/smd_milk/config.h new file mode 100644 index 0000000000..6e16d373d1 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/config.h @@ -0,0 +1,56 @@ +/* Copyright 2019 Sebastian Williams + * + * 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 0xB195 +#define DEVICE_VER 0x0001 +#define MANUFACTURER Kingly-Keys +#define PRODUCT SMD-2% Milk +#define DESCRIPTION The SMD Ed. of the Milk themed 2% Keyboard by rionlion100 + +/* key matrix size */ +#define MATRIX_ROWS 2 +#define MATRIX_COLS 1 + +/* key matrix pins */ +#define MATRIX_ROW_PINS { C5, D2 } +#define MATRIX_COL_PINS { D3 } +#define UNUSED_PINS + +/* COL2ROW or ROW2COL */ +#define DIODE_DIRECTION ROW2COL + +/* Set 0 if debouncing isn't needed */ +#define DEBOUNCE 5 +#define FORCE_NKRO + +/* 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 + +/* ws2812 RGB LED */ +#define RGB_DI_PIN B3 +#define RGBLED_NUM 4 // Number of LEDs + +#define RGBLIGHT_ANIMATIONS +#define RGBLIGHT_HUE_STEP 6 +#define RGBLIGHT_SAT_STEP 4 +#define RGBLIGHT_VAL_STEP 10
\ No newline at end of file diff --git a/keyboards/kingly_keys/smd_milk/info.json b/keyboards/kingly_keys/smd_milk/info.json new file mode 100644 index 0000000000..8d9dbab990 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/info.json @@ -0,0 +1,15 @@ +{ + "keyboard_name": "smd_milk", + "keyboard_folder": "kinlgy_keys/smd_milk", + "url": "", + "maintainer": "TheRoyalSweatshirt", + "width": 1, + "height": 2, + "layouts": { + "LAYOUT": { + "key_count": 2, + "layout": [ {"x": 0, "y": 0 }, {"x": 0, "y": 1 }] + } + } +} + diff --git a/keyboards/kingly_keys/smd_milk/keymaps/default/keymap.c b/keyboards/kingly_keys/smd_milk/keymaps/default/keymap.c new file mode 100644 index 0000000000..22fb9cad68 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/keymaps/default/keymap.c @@ -0,0 +1,8 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [0] = LAYOUT( + KC_HOME, + KC_END + ) +}; diff --git a/keyboards/kingly_keys/smd_milk/readme.md b/keyboards/kingly_keys/smd_milk/readme.md new file mode 100644 index 0000000000..98823d54ab --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/readme.md @@ -0,0 +1,21 @@ +# 2% Milk + +![SMD_MILK](https://i.imgur.com/oAeKSGF.jpg) + +An SMD Version of the 2% Meme board themed around a milk carton and love + +Keyboard Maintainer: [Garret G.](https://github.com/TheRoyalSweatshirt) a.k.a. [/u/The_Royal](https://www.reddit.com/user/The_Royal) +Hardware Availability: Through GB + +Make example for this keyboard (after setting up your build environment): + + make kingly_keys/smd_milk:default + +See 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). + +### Credits ++ Original Concept by rionlion100 ++ Case design by Soft ++ Original 2% Milk PCB by PyroL ++ new SMD PCB by The_Royal ++ Name by jetpacktuxedo diff --git a/keyboards/kingly_keys/smd_milk/rules.mk b/keyboards/kingly_keys/smd_milk/rules.mk new file mode 100644 index 0000000000..815f4866cf --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/rules.mk @@ -0,0 +1,26 @@ +# MCU name +MCU = atmega32u2 + +# Bootloader selection +# Teensy halfkay +# Pro Micro caterina +# Atmel DFU atmel-dfu +# LUFA DFU lufa-dfu +# QMK DFU qmk-dfu +# ATmega32A bootloadHID +# ATmega328P USBasp +BOOTLOADER = atmel-dfu + +# Build Options +# comment out to disable the options. +# +BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) +MOUSEKEY_ENABLE = no # Mouse keys(+4700) +EXTRAKEY_ENABLE = no # Audio control and System control(+450) +CONSOLE_ENABLE = yes # Console for debug(+400) +COMMAND_ENABLE = yes # Commands for debug and configuration +SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend +NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work +BACKLIGHT_ENABLE = no # Custom backlighting code is used, so this should not be enabled +AUDIO_ENABLE = no # This can be enabled if a speaker is connected to the expansion port. Not compatible with RGBLIGHT below +RGBLIGHT_ENABLE = yes # This can be enabled if a ws2812 strip is connected to the expansion port. diff --git a/keyboards/kingly_keys/smd_milk/smd_milk.c b/keyboards/kingly_keys/smd_milk/smd_milk.c new file mode 100644 index 0000000000..95fa50e029 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/smd_milk.c @@ -0,0 +1,16 @@ +/* Copyright 2019 Sebastian Williams + * + * 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 "smd_milk.h" diff --git a/keyboards/kingly_keys/smd_milk/smd_milk.h b/keyboards/kingly_keys/smd_milk/smd_milk.h new file mode 100644 index 0000000000..8f294817f9 --- /dev/null +++ b/keyboards/kingly_keys/smd_milk/smd_milk.h @@ -0,0 +1,26 @@ +/* Copyright 2019 Sebastian Williams + * + * 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 "quantum.h" + +#define LAYOUT( \ + K00, \ + K01 \ +) { \ + { K00 }, \ + { K01 } \ +} |