From 12e66330c5fad6dccc1e7be34f68f2db200b9f6e Mon Sep 17 00:00:00 2001 From: kamisamamizu Date: Sun, 17 Dec 2017 17:44:13 +0100 Subject: Add COSPAD to QMK and add functions to read HSV (#2156) * Added functions to read HSV values I have added three functions to rgb_light.c to be able to read the hue, saturation and value from other places. They are rgblight_get_hue(), rgblight_get_sat(), adn rgblight_get_val(). * Create keymap.c * Add COSPAD support to QMK I have ported the COSPAD numpad to qmk. * Update readme.md * Update cospad.c --- quantum/rgblight.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'quantum/rgblight.c') diff --git a/quantum/rgblight.c b/quantum/rgblight.c index 63eda47cda..ab218b8c50 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c @@ -370,6 +370,18 @@ void rgblight_sethsv(uint16_t hue, uint8_t sat, uint8_t val) { } } +uint16_t rgblight_get_hue(void) { + return rgblight_config.hue; +} + +uint8_t rgblight_get_sat(void) { + return rgblight_config.sat; +} + +uint8_t rgblight_get_val(void) { + return rgblight_config.val; +} + void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b) { if (!rgblight_config.enable) { return; } -- cgit v1.2.3