aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/ortho60/hsv2rgb.h
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/ortho60/hsv2rgb.h')
-rw-r--r--keyboards/handwired/ortho60/hsv2rgb.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/keyboards/handwired/ortho60/hsv2rgb.h b/keyboards/handwired/ortho60/hsv2rgb.h
deleted file mode 100644
index 99566c32c..000000000
--- a/keyboards/handwired/ortho60/hsv2rgb.h
+++ /dev/null
@@ -1,23 +0,0 @@
1/* hsv2rgb.h
2 * Convert Hue Saturation Value to Red Green Blue
3 *
4 * Programme de convertion d'une information HSV en RGB
5 */
6#ifndef HSV2RGB_H
7#define HSV2RGB_H
8
9typedef struct {
10 unsigned char h;
11 unsigned char s;
12 unsigned char v;
13} hsv_color;
14
15typedef struct {
16 unsigned char r;
17 unsigned char g;
18 unsigned char b;
19} rgb_color;
20
21rgb_color hsv2rgb(hsv_color hsv);
22
23#endif \ No newline at end of file