raspikeyer/src/keyer.h

44 lines
814 B
C
Raw Normal View History

2024-02-16 21:05:25 +01:00
#pragma once
2024-02-09 12:20:30 +01:00
2024-02-13 09:00:39 +01:00
#include "settings.h"
2024-02-16 20:56:03 +01:00
#include "sidetone.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
{
2024-02-16 20:56:03 +01:00
public:
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
2024-02-16 20:56:03 +01:00
private:
enum class State {
2024-02-15 13:59:30 +01:00
Wait,
Dit,
Dah,
2024-02-16 09:46:46 +01:00
DitPause,
DahPause,
2024-02-15 13:59:30 +01:00
Abort,
};
2024-02-16 09:46:46 +01:00
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-16 09:46:46 +01:00
2024-02-12 13:48:58 +01:00
absolute_time_t m_keying_until{0};
absolute_time_t m_pausing_until{0};
2024-02-16 09:46:46 +01:00
2024-02-12 15:57:50 +01:00
Sidetone m_Sidetone{BUZZER_PIN};
2024-02-16 09:46:46 +01:00
State m_state{State::Wait};
State m_previousState{State::Wait};
uint64_t m_elementDuration{0};
bool m_currentlyKeying{false};
bool m_currentlyPausing{false};
2024-02-13 09:00:39 +01:00
bool m_keyNextIambicB{false};
2024-02-16 21:05:25 +01:00
};