Find a Morse library that actually works.
This commit is contained in:
parent
e573c1ed1b
commit
7f4c8c001e
|
@ -17,3 +17,4 @@ lib_deps =
|
||||||
me-no-dev/AsyncTCP@^1.1.1
|
me-no-dev/AsyncTCP@^1.1.1
|
||||||
me-no-dev/ESP Async WebServer@^1.2.3
|
me-no-dev/ESP Async WebServer@^1.2.3
|
||||||
contrem/arduino-timer@^3.0.1
|
contrem/arduino-timer@^3.0.1
|
||||||
|
kj7rrv/Telegraph@^1.0.0
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include <SPIFFS.h>
|
#include <SPIFFS.h>
|
||||||
#include <Preferences.h>
|
#include <Preferences.h>
|
||||||
#include <arduino-timer.h>
|
#include <arduino-timer.h>
|
||||||
|
#include <Telegraph.h>
|
||||||
|
|
||||||
// download zip from https://github.com/me-no-dev/ESPAsyncWebServer and install.
|
// download zip from https://github.com/me-no-dev/ESPAsyncWebServer and install.
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
|
@ -200,6 +201,13 @@ void k(){
|
||||||
|
|
||||||
// ^^^^
|
// ^^^^
|
||||||
|
|
||||||
|
Telegraph telegraph(LED_BUILTIN, 10, HIGH);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
// setup(): stuff that only gets done once, after power up (KB1OIQ's description)
|
// setup(): stuff that only gets done once, after power up (KB1OIQ's description)
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
@ -285,9 +293,7 @@ void setup() {
|
||||||
server.onNotFound(notFound);
|
server.onNotFound(notFound);
|
||||||
server.begin();
|
server.begin();
|
||||||
|
|
||||||
|
telegraph.send("CQ CQ CQ");
|
||||||
// Try to send "K" on startup? What about spaces? Don't use delay();
|
|
||||||
k();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -296,8 +302,9 @@ void loop() {
|
||||||
time_until_start.tick();
|
time_until_start.tick();
|
||||||
timer.tick();
|
timer.tick();
|
||||||
|
|
||||||
|
|
||||||
String yourInputString = readFile(SPIFFS, "/inputString.txt");
|
String yourInputString = readFile(SPIFFS, "/inputString.txt");
|
||||||
// int yourInputInt = readFile(SPIFFS, "/inputInt.txt").toInt();
|
int yourInputInt = readFile(SPIFFS, "/inputInt.txt").toInt();
|
||||||
// float yourInputFloat = readFile(SPIFFS, "/inputFloat.txt").toFloat();
|
// float yourInputFloat = readFile(SPIFFS, "/inputFloat.txt").toFloat();
|
||||||
|
|
||||||
// Blink LED according to seconds entered
|
// Blink LED according to seconds entered
|
||||||
|
@ -316,7 +323,6 @@ void loop() {
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// // To access your stored values on inputString, inputInt, inputFloat
|
// // To access your stored values on inputString, inputInt, inputFloat
|
||||||
// String yourInputString = readFile(SPIFFS, "/inputString.txt");
|
// String yourInputString = readFile(SPIFFS, "/inputString.txt");
|
||||||
// Serial.print("*** Your inputString: ");
|
// Serial.print("*** Your inputString: ");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user