Initial commit

This commit is contained in:
IMback
2017-05-14 23:29:55 +02:00
commit e2e53267c6
9 changed files with 512 additions and 0 deletions

16
pwm.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef PWM_H
#define PWM_H
#include <avr/io.h>
class Pwm16b
{
public:
Pwm16b();
~Pwm16b();
void setDuty( const uint16_t duty );
void off();
void on();
};
#endif