2020-01-20 05:15:01 +01:00
|
|
|
#include "settings.h"
|
2019-12-18 07:32:44 +01:00
|
|
|
//sends out morse code at the speed set by cwSpeed
|
2020-01-22 06:21:50 +01:00
|
|
|
void morseLetter(char c, uint16_t dit_duration_ms = globalSettings.cwDitDurationMs);
|
2020-02-10 02:04:00 +01:00
|
|
|
void morseText(const char *text, uint16_t dit_duration_ms = globalSettings.cwDitDurationMs);
|
2020-01-26 01:31:32 +01:00
|
|
|
|
|
|
|
//Plays either a higher or lower tone to indicate a boolean value
|
|
|
|
void morseBool(bool val);
|