From bb09707bd2627b29c150d85244f6f6295b6f0175 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 24 Jul 2020 01:06:56 -0500 Subject: Add base files and configuration for RGB underglow --- app/src/behaviors/behavior_rgb_underglow.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/src/behaviors/behavior_rgb_underglow.c (limited to 'app/src/behaviors') diff --git a/app/src/behaviors/behavior_rgb_underglow.c b/app/src/behaviors/behavior_rgb_underglow.c new file mode 100644 index 0000000..9239f37 --- /dev/null +++ b/app/src/behaviors/behavior_rgb_underglow.c @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2020 Nick Winans + * + * SPDX-License-Identifier: MIT + */ + +#define DT_DRV_COMPAT zmk_behavior_rgb_underglow + +#include +#include +#include + +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; +} -- cgit v1.2.3