diff --git a/vulpes/src/main.cpp b/vulpes/src/main.cpp index 54d7474..8de70ea 100644 --- a/vulpes/src/main.cpp +++ b/vulpes/src/main.cpp @@ -67,8 +67,6 @@ int yourInputNtransmitters; long start_millis = 0; long stop_millis = 0; long pause_until_millis = 0; -float wpm = 10; -float ms_per_dit = 1000 * (60 / (50 * wpm)); // HTML web page to handle 3 input fields (inputString, inputSend, inputFloat) const char index_html[] PROGMEM = R"rawliteral( @@ -249,8 +247,8 @@ String processor(const String& var){ // Set up arduinomorse pin and default WPM -LEDMorseSender sender_blink(blinker, wpm); -LEDMorseSender sender_key(keyer, wpm); +LEDMorseSender sender_blink(blinker, 10.0f); //f makes it a float +LEDMorseSender sender_key(keyer, 10.0f); //================================================================================ // setup(): stuff that only gets done once, after power up (KB1OIQ's description) @@ -312,7 +310,7 @@ void setup() { // Read in existing data yourInputString = readFile(SPIFFS, "/inputString.txt"); yourInputSend = readFile(SPIFFS, "/inputSend.txt").toInt(); - yourInputWPM = readFile(SPIFFS, "/inputWPM.txt").toInt(); + yourInputWPM = readFile(SPIFFS, "/inputWPM.txt").toFloat(); yourInputMsg = readFile(SPIFFS, "/inputMsg.txt").toInt(); yourInputFloat = readFile(SPIFFS, "/inputFloat.txt").toFloat(); yourInputStartTimeUnix = readFile(SPIFFS, "/inputStartTimeUnix.txt").toInt();