Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeze2000 committed Jul 29, 2023
2 parents 100a0ce + 5f0eab9 commit 46efc95
Show file tree
Hide file tree
Showing 118 changed files with 5,224 additions and 26 deletions.
2 changes: 1 addition & 1 deletion docs/feature_rgblight.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Your RGB lighting can be configured by placing these `#define`s in your `config.

|Define |Default |Description |
|---------------------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------|
|`RGBLIGHT_HUE_STEP` |`10` |The number of steps to cycle through the hue by |
|`RGBLIGHT_HUE_STEP` |`8` |The number of steps to cycle through the hue by |
|`RGBLIGHT_SAT_STEP` |`17` |The number of steps to increment the saturation by |
|`RGBLIGHT_VAL_STEP` |`17` |The number of steps to increment the brightness by |
|`RGBLIGHT_LIMIT_VAL` |`255` |The maximum brightness level |
Expand Down
25 changes: 25 additions & 0 deletions keyboards/anavi/macropad12/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Copyright 2023 Leon Anavi <[email protected]>
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_MOOD

/* Double tap reset button to enter bootloader */
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U

#ifdef BACKLIGHT_ENABLE
# define BACKLIGHT_PWM_DRIVER PWMD5
# define BACKLIGHT_PWM_CHANNEL RP2040_PWM_CHANNEL_A
#endif

#define I2C1_SDA_PIN GP6
#define I2C1_SCL_PIN GP7

#ifdef OLED_ENABLE
# define OLED_DISPLAY_128X64
# define OLED_TIMEOUT 60000
# define OLED_BRIGHTNESS 128
#endif
9 changes: 9 additions & 0 deletions keyboards/anavi/macropad12/halconf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright 2023 Leon Anavi <[email protected]>
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define HAL_USE_I2C TRUE
#define HAL_USE_PWM TRUE

#include_next <halconf.h>
69 changes: 69 additions & 0 deletions keyboards/anavi/macropad12/info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"keyboard_name": "Macro Pad 12",
"manufacturer": "ANAVI",
"url": "https://github.com/AnaviTechnology/anavi-macro-pad-12",
"maintainer": "leon-anavi",
"processor": "RP2040",
"bootloader": "rp2040",
"diode_direction": "COL2ROW",
"matrix_pins": {
"cols": ["GP0", "GP2", "GP4"],
"rows": ["GP27", "GP28", "GP29", "GP1"]
},
"features": {
"bootmagic": true,
"command": false,
"console": false,
"extrakey": true,
"mousekey": true,
"nkro": true,
"rgblight": true,
"backlight": true,
"oled": true
},
"rgblight": {
"led_count": 6,
"animations": {
"alternating": true,
"breathing": true,
"christmas": true,
"knight": true,
"rainbow_mood": true,
"rainbow_swirl": true,
"rgb_test": true,
"snake": true,
"static_gradient": true,
"twinkle": true
}
},
"ws2812": {
"pin": "GP3",
"driver": "vendor"
},
"backlight": {
"pin": "GP26"
},
"layouts": {
"LAYOUT": {
"layout": [
{"matrix": [0, 0], "x": 0, "y": 0},
{"matrix": [0, 1], "x": 1, "y": 0},
{"matrix": [0, 2], "x": 2, "y": 0},
{"matrix": [1, 0], "x": 0, "y": 1},
{"matrix": [1, 1], "x": 1, "y": 1},
{"matrix": [1, 2], "x": 2, "y": 1},
{"matrix": [2, 0], "x": 0, "y": 2},
{"matrix": [2, 1], "x": 1, "y": 2},
{"matrix": [2, 2], "x": 2, "y": 2},
{"matrix": [3, 0], "x": 0, "y": 3},
{"matrix": [3, 1], "x": 1, "y": 3},
{"matrix": [3, 2], "x": 2, "y": 3}
]
}
},
"usb": {
"device_version": "1.0.0",
"pid": "0x9A25",
"vid": "0xFEED"
}
}
17 changes: 17 additions & 0 deletions keyboards/anavi/macropad12/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright 2023 Leon Anavi <[email protected]>
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

enum layer_names {
_BASE
};

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_BASE] = LAYOUT(
KC_1, KC_2, KC_3,
KC_4, KC_5, KC_6,
KC_7, KC_8, KC_9,
BL_STEP, RGB_MOD, RGB_TOG
)
};
38 changes: 38 additions & 0 deletions keyboards/anavi/macropad12/macropad12.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// Copyright 2023 Leon Anavi <[email protected]>
// SPDX-License-Identifier: GPL-2.0-or-later

#include "quantum.h"

#ifdef OLED_ENABLE

bool oled_task_kb(void) {

if (!oled_task_user()) {
return false;
}

// Host Keyboard Layer Status
oled_write_ln_P(PSTR("ANAVI Macro Pad 12"), false);
oled_write_ln_P(PSTR("Keymap: Default"), false);

// Host Keyboard LED Status
led_t led_state = host_keyboard_led_state();
oled_write_P(PSTR("Num Lock: "), false);
oled_write_ln_P(led_state.num_lock ? PSTR("On") : PSTR("Off"), false);
oled_write_P(PSTR("Caps Lock: "), false);
oled_write_ln_P(led_state.caps_lock ? PSTR("On") : PSTR("Off"), false);
oled_write_P(PSTR("Scroll Lock: "), false);
oled_write_ln_P(led_state.scroll_lock ? PSTR("On") : PSTR("Off"), false);
# ifdef RGBLIGHT_ENABLE
oled_write_P(PSTR("RGB Mode: "), false);
oled_write_ln(get_u8_str(rgblight_get_mode(), ' '), false);
oled_write_P(PSTR("h: "), false);
oled_write(get_u8_str(rgblight_get_hue(), ' '), false);
oled_write_P(PSTR("s: "), false);
oled_write(get_u8_str(rgblight_get_sat(), ' '), false);
oled_write_P(PSTR("v: "), false);
oled_write_ln(get_u8_str(rgblight_get_val(), ' '), false);
# endif
return false;
}
#endif
15 changes: 15 additions & 0 deletions keyboards/anavi/macropad12/mcuconf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Copyright 2023 Leon Anavi (@leon-anavi)
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include_next <mcuconf.h>

#undef RP_I2C_USE_I2C0
#define RP_I2C_USE_I2C0 FALSE

#undef RP_I2C_USE_I2C1
#define RP_I2C_USE_I2C1 TRUE

#undef RP_PWM_USE_PWM5
#define RP_PWM_USE_PWM5 TRUE
21 changes: 21 additions & 0 deletions keyboards/anavi/macropad12/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# ANAVI Macro Pad 12

ANAVI Macro Pad 12 is a compact mechanical keyboard with hot-swappable Cherry MX compatible mechanical switches, translucent keycaps, USB-C, RP2040 microcontroller, backlighting and under lighting.

* Keyboard Maintainer: [Leon Anavi](https://github.com/leon-anavi)
* Hardware Supported: ANAVI Macro Pad 12
* Hardware Availability: [Crowd Supply](https://www.crowdsupply.com/anavi-technology/anavi-macro-pad-12-and-arrows), [GitHub repository](https://github.com/AnaviTechnology/anavi-macro-pad-12)

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

qmk compile -kb anavi/macropad12 -km 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).

## Bootloader

Enter the bootloader in 3 ways:

* **Bootmagic reset**: Hold down the top left key on the left half, or top right key on the right half, and then plug in the USB cable on that keyboard half.
* **Physical reset button**: Double tap the reset button on the XIAO RP2040.
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available.
1 change: 1 addition & 0 deletions keyboards/anavi/macropad12/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file intentionally left blank
2 changes: 1 addition & 1 deletion keyboards/artemis/paragon/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"url": "",
"encoder": {
"rotary": [
{ "pin_a": "D3", "pin_b": "D5" }
{ "pin_a": "D3", "pin_b": "D5", "resolution": 2 }
]
},
"usb": {
Expand Down
14 changes: 14 additions & 0 deletions keyboards/cannonkeys/bastion60/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright 2023 Andrew Kannan
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 500U

#define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 64

#define BACKLIGHT_PWM_DRIVER PWMD3
#define BACKLIGHT_PWM_CHANNEL RP2040_PWM_CHANNEL_A

#define WS2812_PIO_USE_PIO1
8 changes: 8 additions & 0 deletions keyboards/cannonkeys/bastion60/halconf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2022 Andrew Kannan
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define HAL_USE_PWM TRUE

#include_next <halconf.h>
Loading

0 comments on commit 46efc95

Please sign in to comment.