aboutsummaryrefslogtreecommitdiffstats
path: root/lcd_backlight_keyframes.h
diff options
context:
space:
mode:
authorThat-Canadian <poole.chris.11@gmail.com>2017-07-10 16:53:49 -0400
committerThat-Canadian <poole.chris.11@gmail.com>2017-07-10 16:53:49 -0400
commit55ed97af1e2fb183d2b6c34bc8659a03cbda090c (patch)
treea3950f5dbe7d12f29c2b9a77d49b4e807af87ae6 /lcd_backlight_keyframes.h
parent1fdf3c84fe2bb10698bf528a9726aab5af12ca6d (diff)
parent07bf8522ca23a7665852bb9defff0749c76f5e91 (diff)
downloadfirmware-55ed97af1e2fb183d2b6c34bc8659a03cbda090c.tar.gz
firmware-55ed97af1e2fb183d2b6c34bc8659a03cbda090c.tar.bz2
firmware-55ed97af1e2fb183d2b6c34bc8659a03cbda090c.zip
Merge branch 'master' into minidox
Diffstat (limited to 'lcd_backlight_keyframes.h')
-rw-r--r--lcd_backlight_keyframes.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/lcd_backlight_keyframes.h b/lcd_backlight_keyframes.h
new file mode 100644
index 000000000..bde118449
--- /dev/null
+++ b/lcd_backlight_keyframes.h
@@ -0,0 +1,30 @@
+/* Copyright 2017 Fred Sundvik
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef QUANTUM_VISUALIZER_LCD_BACKLIGHT_KEYFRAMES_H_
+#define QUANTUM_VISUALIZER_LCD_BACKLIGHT_KEYFRAMES_H_
+
+#include "visualizer.h"
+
+// Animates the LCD backlight color between the current color and the target color (of the state)
+bool lcd_backlight_keyframe_animate_color(keyframe_animation_t* animation, visualizer_state_t* state);
+// Sets the backlight color to the target color
+bool lcd_backlight_keyframe_set_color(keyframe_animation_t* animation, visualizer_state_t* state);
+
+bool lcd_backlight_keyframe_disable(keyframe_animation_t* animation, visualizer_state_t* state);
+bool lcd_backlight_keyframe_enable(keyframe_animation_t* animation, visualizer_state_t* state);
+
+#endif /* QUANTUM_VISUALIZER_LCD_BACKLIGHT_KEYFRAMES_H_ */