summaryrefslogtreecommitdiffstats
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, 23 insertions, 0 deletions
diff --git a/keyboards/handwired/ortho60/hsv2rgb.h b/keyboards/handwired/ortho60/hsv2rgb.h
new file mode 100644
index 000000000..99566c32c
--- /dev/null
+++ b/keyboards/handwired/ortho60/hsv2rgb.h
@@ -0,0 +1,23 @@
+/* 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