raspikeyer/src/sidetone.h

16 lines
191 B
C
Raw Normal View History

2024-02-12 15:57:50 +01:00
#ifndef SIDETONE_H
#define SIDETONE_H
class Sidetone
{
2024-02-16 20:56:03 +01:00
public:
2024-02-12 15:57:50 +01:00
Sidetone(uint gpio);
void on(uint freq);
void off();
2024-02-16 20:56:03 +01:00
private:
2024-02-12 15:57:50 +01:00
Sidetone(){};
uint m_gpio{0};
};
#endif