Skip to content

Commit

Permalink
[Keyboard] update angel64 (qmk#7545)
Browse files Browse the repository at this point in the history
* add angel64 rev1

* update angel64

* fix keymap.c
  • Loading branch information
kakunpc authored and drashna committed Dec 11, 2019
1 parent 698d0db commit ccda626
Show file tree
Hide file tree
Showing 26 changed files with 1,009 additions and 65 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* 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 "angel64.h"
#include "alpha.h"

// Optional override functions below.
// You can leave any or all of these undefined.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

/* USB Device descriptor parameter */
#define VENDOR_ID 0xFEED
#define PRODUCT_ID 0x0000
#define PRODUCT_ID 0x0A64
#define DEVICE_VER 0x0001
#define MANUFACTURER kakunpc
#define PRODUCT angel64
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"keyboard_name": "angel64",
"keyboard_name": "angel64_alpha",
"url": "https://kakunpc.booth.pm/",
"maintainer": "kakunpc",
"width": 14,
Expand Down
File renamed without changes.
60 changes: 60 additions & 0 deletions keyboards/angel64/alpha/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/* Copyright 2019 kakunpc
*
* 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 QMK_KEYBOARD_H

enum layers{
BASE = 0,
COMMAND
};

#define KC_COMMAND LT(COMMAND,KC_SPC)

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[BASE] = LAYOUT(
KC_GRV, 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,
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,
LCTL_T(KC_TAB), 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_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_RSFT,
KC_TAB, KC_LALT, KC_LGUI, KC_COMMAND, KC_SPC, KC_COMMAND, KC_APP, KC_LEFT, KC_DOWN, KC_RIGHT, KC_DEL),
[COMMAND] = LAYOUT(
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_BSPC,
KC_NO, KC_UP, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_CAPS, KC_LEFT, KC_DOWN, KC_RIGHT, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_LSFT, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
KC_NO, KC_NO, KC_NO, _______, KC_NO, _______, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO),
};

#ifdef OLED_DRIVER_ENABLE
void oled_task_user(void) {
oled_write_P(PSTR("Layer: "), false);
switch (biton32(layer_state)) {
case BASE:
oled_write_P(PSTR("Default\n"), false);
break;
case COMMAND:
oled_write_P(PSTR("COMMAND\n"), false);
break;
default:
// Or use the write_ln shortcut over adding 'n' to the end of your string
oled_write_ln_P(PSTR("Undefined"), false);
}

// Host Keyboard LED Status
oled_write_P(IS_HOST_LED_ON(USB_LED_NUM_LOCK) ? PSTR("NUMLCK ") : PSTR(" "), false);
oled_write_P(IS_HOST_LED_ON(USB_LED_CAPS_LOCK) ? PSTR("CAPLCK ") : PSTR(" "), false);
oled_write_P(IS_HOST_LED_ON(USB_LED_SCROLL_LOCK) ? PSTR("SCRLCK ") : PSTR(" "), false);
}
#endif
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions keyboards/angel64/alpha/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# angel64

![angel64](https://i.gyazo.com/6e2ea6c58d3253c496dc0518f2641ff9.jpg)

Keyboard for tablets.

* Keyboard Maintainer: [kakunpc](https://github.com/kakunpc)
* Hardware Supported: angel64_alpha, promicro
* Hardware Availability: booth([@kakunpc](https://kakunpc.booth.pm/))

Make example for this keyboard (after setting up your build environment):

make angel64/alpha: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).
Empty file.
58 changes: 0 additions & 58 deletions keyboards/angel64/keymaps/default/keymap.c

This file was deleted.

8 changes: 4 additions & 4 deletions keyboards/angel64/readme.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# angel64

![angel64](https://i.gyazo.com/6e2ea6c58d3253c496dc0518f2641ff9.jpg)
![angel64](https://i.gyazo.com/d114d4b1789009dbe8c910eaeb3295c5.jpg)

Keyboard for tablets.

Keyboard Maintainer: [kakunpc](https://github.com/kakunpc)
Hardware Supported: angel64_alpha, promicro
Hardware Availability: booth([@kakunpc](https://kakunpc.booth.pm/))
* Keyboard Maintainer: [kakunpc](https://github.com/kakunpc)
* Hardware Supported: angel64_alpha, angel64_rev1, promicro
* Hardware Availability: booth([@kakunpc](https://kakunpc.booth.pm/))

Make example for this keyboard (after setting up your build environment):

Expand Down
Loading

0 comments on commit ccda626

Please sign in to comment.