forked from kofal.net/zmk
Add base files and configuration for RGB underglow
This commit is contained in:
21
app/src/behaviors/behavior_rgb_underglow.c
Normal file
21
app/src/behaviors/behavior_rgb_underglow.c
Normal file
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (c) 2020 Nick Winans <nick@winans.codes>
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
#define DT_DRV_COMPAT zmk_behavior_rgb_underglow
|
||||
|
||||
#include <device.h>
|
||||
#include <drivers/behavior.h>
|
||||
#include <logging/log.h>
|
||||
|
||||
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
|
||||
|
||||
struct behavior_rgb_underglow_config { };
|
||||
struct behavior_rgb_underglow_data { };
|
||||
|
||||
static int behavior_rgb_underglow_init(struct device *dev)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user