raspikeyer/src/sidetone.h
2024-02-16 20:56:03 +01:00

16 lines
191 B
C++

#ifndef SIDETONE_H
#define SIDETONE_H
class Sidetone
{
public:
Sidetone(uint gpio);
void on(uint freq);
void off();
private:
Sidetone(){};
uint m_gpio{0};
};
#endif