aboutsummaryrefslogtreecommitdiff
path: root/pwm.h
diff options
context:
space:
mode:
Diffstat (limited to 'pwm.h')
-rw-r--r--pwm.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/pwm.h b/pwm.h
new file mode 100644
index 0000000..eeb93c6
--- /dev/null
+++ b/pwm.h
@@ -0,0 +1,11 @@
+#ifndef PWM_H
+#define PWM_H
+
+#include <stdint.h>
+void pwmInit ();
+void pwmStart ();
+void pwmStop ();
+void pwmSetBrightness (const uint8_t i, const uint8_t b);
+
+#endif /* PWM_H */
+