From 5c4e50c231f5bfce11bb6b69401b8f400deecdae Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Sat, 24 Aug 2024 16:01:38 +0200 Subject: [PATCH] Added button to stop CW sending --- application/views/qso/index.php | 1 + assets/js/winkey.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/application/views/qso/index.php b/application/views/qso/index.php index c82e5fd78..6cc47c1ca 100644 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -653,6 +653,7 @@
+ diff --git a/assets/js/winkey.js b/assets/js/winkey.js index c4bc653f5..6d51550d1 100644 --- a/assets/js/winkey.js +++ b/assets/js/winkey.js @@ -159,6 +159,10 @@ async function connect() { } } +function stop_cw_sending() { + sendHexToSerial("0A"); +} + function delay(ms) { return new Promise(resolve => setTimeout(resolve, ms)); }