From 524205d2925657dfa429bd6ca35fcc2cadd6eaac Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Tue, 10 Aug 2021 18:47:01 +0200 Subject: [PATCH] Add files via upload --- src/data-module.html | 150 +++++++++ src/index.html | 755 +++++++++++++++++++++++++++++++++++++++++++ src/styles.css | 37 +++ 3 files changed, 942 insertions(+) create mode 100644 src/data-module.html create mode 100644 src/index.html create mode 100644 src/styles.css diff --git a/src/data-module.html b/src/data-module.html new file mode 100644 index 00000000..f9929745 --- /dev/null +++ b/src/data-module.html @@ -0,0 +1,150 @@ + + + + + + + + + + Send & Receive Data + + +
+
+
+
+
+
Select data
+
+
+ + +
+
+
+
+ +
+ +
+
+
+
Transmission
+
+
+
+
+ + + ACK + 0000 km + 0 dB +
+
+
+
+
+
+ Mode + +
+
+
+
+ Frames + +
+
+
+
+ + +
+
+
+
+
+ +
+ +
+
+
+
+
Info
+
+ 123 +
+
+
+
+
+
+
+
+
+ +
+ +
+ + + + + \ No newline at end of file diff --git a/src/index.html b/src/index.html new file mode 100644 index 00000000..07aada9c --- /dev/null +++ b/src/index.html @@ -0,0 +1,755 @@ + + + + + + + + + + + + + + codec2 | FreeDATA + + + + + + + + + + + + + +
+
+
+
+
+ 1. AUDIO +
+
+
+ RX + +
+
+ TX + +
+
+
+

RX AUDIO LEVEL

+
+
+ +
+
+
+
+
+ 2. RADIO +
+
+
+ RIG + +
+
+ PTT + +
+
+ Port + + Speed + +
+
+ +
+
+
+
+
3. TNC
+
+ +
+
+
+ TNC +
+
+
+ + --- + +
+
+
+
+
+ CPU +
+
+
+
+

+
+
+
+
+
+ RAM +
+
+
+
+

+
+
+
+
+
+ TOE +
+
+

+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
MY STATION
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+
+
+
+
PING & CQ
+
+
+
+
+ Ping + + + ACK + 0000 km + 0 dB +
+
+
+
+ +
+
+
+ +
+
+
+
+
+
+
+
+
+ + + + +
+
+ + + + +
+
+
+
+
HEARD STATIONS
+
+ + + + + + + + + + + + + + + + +
TimeDXCallDXGridDistanceTypeSNR
+ +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 00000000..493b8ef9 --- /dev/null +++ b/src/styles.css @@ -0,0 +1,37 @@ + /** + * disable scrolling in main window + */ + body { + padding-right: 0px !important; + overflow-y: hidden !important; + } + /** + * Progress bars with centered text + */ + .progress { + position: relative; + } + .progress span { + position: absolute; + display: block; + width: 100%; + color: black; + } + + + +/* The sidebar menu */ +/* https://www.w3schools.com/howto/howto_js_collapse_sidebar.asp*/ +.sidebar { + height: 100%; /* 100% Full-height */ + width: 0; /* 0 width - change this with JavaScript */ + position: fixed; /* Stay in place */ + z-index: 1000; /* Stay on top */ + top: 0; + /*left: 1220px;*/ + right: 0; + background-color: #fff; /* White*/ + overflow-x: hidden; /* Disable horizontal scroll */ + padding-top: 60px; /* Place content 60px from the top */ + transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */ +} \ No newline at end of file