summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/practice60/hsv2rgb.h
diff options
context:
space:
mode:
authorAndrew Kannan <andrew.kannan@klaviyo.com>2019-01-29 01:40:02 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-29 01:40:02 +0100
commit0f507f01696eae0e8fe808d17a19db3f6d9e2ce4 (patch)
tree986c78fbb09b6bf5e33df6c28158e6877af64960 /keyboards/handwired/practice60/hsv2rgb.h
parentd9120412d3d81fc688a7e5346711cf716518dc34 (diff)
downloadqmk_firmware-0f507f01696eae0e8fe808d17a19db3f6d9e2ce4.tar.gz
qmk_firmware-0f507f01696eae0e8fe808d17a19db3f6d9e2ce4.tar.xz
Practice60 RGB and PWM Backlight (#4929)
* Update Practice60 to enable RGB via SPI DMA and use PWM backlight breathing * Correct stm32f103c8t6 flash size in eeprom definition * Remove unused files and improve ifdef checks * Update quantum/rgblight.c Co-Authored-By: awkannan <andrew.kannan@klaviyo.com> * Update quantum/rgblight.c Co-Authored-By: awkannan <andrew.kannan@klaviyo.com> * EEPROM implementation fix and updated p60 code * Update define * Remove dead code * Update keymap to remove test key * Update keymap again
Diffstat (limited to 'keyboards/handwired/practice60/hsv2rgb.h')
-rw-r--r--keyboards/handwired/practice60/hsv2rgb.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/keyboards/handwired/practice60/hsv2rgb.h b/keyboards/handwired/practice60/hsv2rgb.h
deleted file mode 100644
index 99566c32c..000000000
--- a/keyboards/handwired/practice60/hsv2rgb.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/* hsv2rgb.h
- * Convert Hue Saturation Value to Red Green Blue
- *
- * Programme de convertion d'une information HSV en RGB
- */
-#ifndef HSV2RGB_H
-#define HSV2RGB_H
-
-typedef struct {
- unsigned char h;
- unsigned char s;
- unsigned char v;
-} hsv_color;
-
-typedef struct {
- unsigned char r;
- unsigned char g;
- unsigned char b;
-} rgb_color;
-
-rgb_color hsv2rgb(hsv_color hsv);
-
-#endif \ No newline at end of file