raspikeyer/src/keyer.h

44 lines
859 B
C
Raw Normal View History

2024-02-09 12:20:30 +01:00
#ifndef KEYER_H
#define KEYER_H
2024-02-12 15:57:50 +01:00
#include "sidetone.h"
2024-02-13 09:00:39 +01:00
#include "settings.h"
2024-02-12 15:57:50 +01:00
extern const uint BUZZER_PIN;
2024-02-09 12:20:30 +01:00
class Keyer final
{
public:
enum class State
{
2024-02-10 23:51:55 +01:00
Wait,
2024-02-11 16:26:55 +01:00
Dit,
Dah,
2024-02-11 15:45:12 +01:00
InterCharSpace,
2024-02-14 11:32:09 +01:00
Abort,
2024-02-09 12:20:30 +01:00
};
2024-02-14 11:05:33 +01:00
Keyer() = delete;
2024-02-13 09:00:39 +01:00
Keyer(uint8_t wpm, Mode mode);
2024-02-09 12:20:30 +01:00
2024-02-14 11:05:33 +01:00
void setMode(Mode mode) { m_mode = mode; }
void setSpeed(uint8_t wpm);
2024-02-09 12:20:30 +01:00
void run();
2024-02-14 11:32:09 +01:00
void stop();
2024-02-09 12:20:30 +01:00
private:
2024-02-10 23:51:55 +01:00
State state{State::Wait};
2024-02-12 13:48:58 +01:00
State m_previousState{State::Wait};
State m_nextState{State::Wait};
2024-02-12 13:48:58 +01:00
uint8_t m_wpm{18};
2024-02-13 09:00:39 +01:00
Mode m_mode{Mode::IAMBIC_B};
2024-02-12 13:48:58 +01:00
uint64_t m_elementDuration{0};
2024-02-12 14:10:04 +01:00
bool m_currentlyKeying{false};
2024-02-13 09:00:39 +01:00
bool m_currentlyPausing{false};
2024-02-12 13:48:58 +01:00
absolute_time_t m_keying_until{0};
absolute_time_t m_pausing_until{0};
2024-02-12 15:57:50 +01:00
Sidetone m_Sidetone{BUZZER_PIN};
2024-02-13 09:00:39 +01:00
bool m_keyNextIambicB{false};
2024-02-09 12:20:30 +01:00
};
#endif