1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-08 07:29:37 +00:00
r65emu/sound_pwm.cpp

17 lines
211 B
C++
Raw Normal View History

2018-11-09 07:25:13 +00:00
#include <Arduino.h>
2018-09-11 15:06:52 +00:00
#include "sound_pwm.h"
static unsigned gpio;
2018-11-09 07:25:13 +00:00
2018-09-11 15:06:52 +00:00
void PWM::begin(unsigned gpio) {
2018-11-18 11:57:51 +00:00
::gpio = gpio;
2018-11-11 11:59:43 +00:00
}
void PWM::stop() {
noTone(gpio);
2018-11-11 11:59:43 +00:00
}
void PWM::start(unsigned freq) {
tone(gpio, freq);
2018-11-11 11:59:43 +00:00
}