#pragma once class Sidetone { public: Sidetone() = delete; Sidetone(uint gpio); void on(uint freq); void off(); private: uint m_gpio {0}; };