Browse Source

Support for the Clueboard California macropad (#7127)

* Support for the Clueboard California macropad

* Update keyboards/clueboard/california/config.h

Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
pull/7136/head
skullydazed 4 years ago
committed by GitHub
parent
commit
b62ee65c6d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 86 additions and 0 deletions
  1. +1
    -0
      keyboards/clueboard/california/california.c
  2. +21
    -0
      keyboards/clueboard/california/california.h
  3. +24
    -0
      keyboards/clueboard/california/config.h
  4. +10
    -0
      keyboards/clueboard/california/info.json
  5. +7
    -0
      keyboards/clueboard/california/keymaps/default/keymap.json
  6. +13
    -0
      keyboards/clueboard/california/readme.md
  7. +10
    -0
      keyboards/clueboard/california/rules.mk

+ 1
- 0
keyboards/clueboard/california/california.c View File

@ -0,0 +1 @@
#include "california.h"

+ 21
- 0
keyboards/clueboard/california/california.h View File

@ -0,0 +1,21 @@
#pragma once
#include "quantum.h"
// Any changes to the layout names and/or definitions must also be made to info.json
#define LAYOUT( \
K00, K01, \
K10, K11, \
K21, \
K30, K31, \
K40, K41, \
K51 \
) { \
{ K00, K01 }, \
{ K10, K11 }, \
{ KC_NO, K21 }, \
{ K30, K31 }, \
{ K40, K41 }, \
{ KC_NO, K51 } \
}

+ 24
- 0
keyboards/clueboard/california/config.h View File

@ -0,0 +1,24 @@
#pragma once
#include "config_common.h"
/* USB Device descriptor parameter */
#define VENDOR_ID 0xC1ED
#define PRODUCT_ID 0x23B0
#define DEVICE_VER 0x0001
#define MANUFACTURER Clueboard
#define PRODUCT California Macropad
#define DESCRIPTION A 10-key macropad shaped like California
/* key matrix pins */
#define MATRIX_ROWS 6
#define MATRIX_COLS 2
#define DIRECT_PINS { \
{ A10, A9 }, \
{ A0, B8 }, \
{ NO_PIN, B11 }, \
{ B9, A8 }, \
{ A7, B1 }, \
{ NO_PIN, B2 } \
}
#define UNUSED_PINS

+ 10
- 0
keyboards/clueboard/california/info.json View File

@ -0,0 +1,10 @@
{
"keyboard_name": "Clueboard California",
"url": "",
"maintainer": "skullydazed",
"layouts": {
"LAYOUT": {
"layout": [{"x":0, "y":0}, {"x":1, "y":0}, {"x":0, "y":1}, {"x":1, "y":1}, {"x":1, "y":2}, {"x":1.25, "y":3}, {"x":2.25, "y":3}, {"x":2, "y":4}, {"x":3, "y":4}, {"x":3.75, "y":5}]
}
}
}

+ 7
- 0
keyboards/clueboard/california/keymaps/default/keymap.json View File

@ -0,0 +1,7 @@
{
"keyboard":"clueboard/california",
"layout":"LAYOUT",
"layers":[
["KC_1","KC_2","KC_3","KC_4","KC_5","KC_6","KC_7","KC_8","KC_9","BL_STEP"]
]
}

+ 13
- 0
keyboards/clueboard/california/readme.md View File

@ -0,0 +1,13 @@
# Clueboard California
A macropad shaped like California
* Keyboard Maintainer: [Zach White](https://github.com/skullydazed)
* Hardware Supported: Clueboard California PCB
* Hardware Availability: 2019 Northern California Meetup
Make example for this keyboard (after setting up your build environment):
make clueboard/california: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).

+ 10
- 0
keyboards/clueboard/california/rules.mk View File

@ -0,0 +1,10 @@
MCU = STM32F303
## Features
MOUSEKEY_ENABLE = yes # Mouse keys
EXTRAKEY_ENABLE = yes # Audio control and System control
CONSOLE_ENABLE = yes # Console for debug
COMMAND_ENABLE = no # Commands for debug and configuration
NKRO_ENABLE = yes # USB Nkey Rollover
RGBLIGHT_ENABLE = no
AUDIO_ENABLE = yes

Loading…
Cancel
Save