Clean up.

This commit is contained in:
mattbk 2023-09-16 09:16:35 -05:00
parent f4287eba7b
commit d973bbf19a

View File

@ -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();