You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
429 B
22 lines
429 B
4 years ago
|
/*
|
||
|
* 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;
|
||
|
}
|