aboutsummaryrefslogtreecommitdiff
path: root/pwm.h
blob: eeb93c6a13341536ec1d75d2245219a1d837d447 (plain)
1
2
3
4
5
6
7
8
9
10
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 */