Pete Johanson
4 years ago
80 changed files with 185 additions and 71 deletions
@ -0,0 +1,11 @@ |
|||||||
|
# The ZMK Project consists of many contributors. This file includes individuals |
||||||
|
# who have contributed significant changes to the project. To be added to here, |
||||||
|
# please submit a PR to the project repo. |
||||||
|
Peter Johanson (@petejohanson) |
||||||
|
Innovaker (@innovaker) |
||||||
|
Nick Winans (@Nicell) |
||||||
|
Okke Formsma (@okke-formsma) |
||||||
|
Cody McGinnis (@BrainWart) |
||||||
|
Kurtis Lew (@kurtis-lew) |
||||||
|
Richard Jones (@bmcgavin) |
||||||
|
Kevin Chen (@chenkevinh) |
@ -1,8 +1,8 @@ |
|||||||
# Copyright (c) 2020, Nick Winans |
# Copyright (c) 2020 The ZMK Contributors |
||||||
# SPDX-License-Identifier: MIT |
# SPDX-License-Identifier: MIT |
||||||
|
|
||||||
description: RGB Underglow Action |
description: RGB Underglow Action |
||||||
|
|
||||||
compatible: "zmk,behavior-rgb-underglow" |
compatible: "zmk,behavior-rgb-underglow" |
||||||
|
|
||||||
include: one_param.yaml |
include: one_param.yaml |
||||||
|
@ -1,3 +1,9 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 The ZMK Contributors |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: MIT |
||||||
|
*/ |
||||||
|
|
||||||
#pragma once |
#pragma once |
||||||
|
|
||||||
int zmk_kscan_init(char *name); |
int zmk_kscan_init(char *name); |
||||||
|
@ -1,3 +1,9 @@ |
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 The ZMK Contributors |
||||||
|
* |
||||||
|
* SPDX-License-Identifier: MIT |
||||||
|
*/ |
||||||
|
|
||||||
#pragma once |
#pragma once |
||||||
|
|
||||||
u32_t zmk_matrix_transform_row_column_to_position(u32_t row, u32_t column); |
u32_t zmk_matrix_transform_row_column_to_position(u32_t row, u32_t column); |
Loading…
Reference in new issue