1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-01 22:41:30 +00:00
r65emu/sound_pwm.h

12 lines
150 B
C
Raw Normal View History

2018-09-11 15:06:52 +00:00
#ifndef __SOUND_PWM_H__
#define __SOUND_PWM_H__
class PWM {
public:
void begin(unsigned gpio);
void stop();
void start(unsigned freq);
2018-09-11 15:06:52 +00:00
};
#endif