raspikeyer/src/keyer.h

18 lines
175 B
C
Raw Normal View History

2024-02-09 12:20:30 +01:00
#ifndef KEYER_H
#define KEYER_H
class Keyer final
{
public:
enum class State
{
WAIT
};
void run();
private:
State state{State::WAIT};
};
#endif