raspikeyer/src/keyer.h

18 lines
No EOL
175 B
C++

#ifndef KEYER_H
#define KEYER_H
class Keyer final
{
public:
enum class State
{
WAIT
};
void run();
private:
State state{State::WAIT};
};
#endif