-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
89 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,84 @@ | ||
# WebMorseRunner | ||
Morse Contest Practice | ||
# Web Morse Runner | ||
|
||
A small contest simulator for the web. | ||
|
||
## About | ||
This is a new written version of MorseRunner as Web-Application. | ||
|
||
The Project is inspired by the Program [MorseRunner by VE2NEA - Alex Shovkoplyas](https://github.com/VE3NEA/MorseRunner). The Idea to start a complete new Web App Project originate from the authors previous effort to [port MorseRunner to Linux and Mac](https://github.com/fritzsche/MorseRunner). | ||
|
||
|
||
This project is complete new and independent of Alex project. The original MorseRunner target Windows and is developed in Pascal, while this version is complete rewritten from scratch in Javascript and targeting the usage in web browsers. | ||
|
||
|
||
|
||
|
||
## Functions | ||
|
||
* Runs in Browser using Javascript | ||
* Usage Web Audio API using AudioWorklet | ||
* No Backend | ||
* Single Call Mode (yet) | ||
* (Complex) Noise | ||
* Modulation | ||
* Filter | ||
* Read List of calls from calls.txt | ||
* Speed in WPM | ||
* Stetting: | ||
* Pitch | ||
* RX Bandwidth | ||
* Monitor Level | ||
* RIT | ||
* Time the contest should run | ||
* My Call | ||
* Sending via buttons and function key | ||
* ESM (Enter to Send Message) | ||
* Calculate and display Score | ||
* Display log and confirm QSO's | ||
|
||
## Features not (yet) implemented | ||
|
||
* Other contest modes (e.g. Pile-up/WPX) | ||
* Bank Condition (QRM/QRN etc.) | ||
* WAV File Export | ||
* Best-List | ||
* Score over time | ||
* some Keyboard shortcuts missing | ||
|
||
## Status | ||
This Web App is in a very early stage, still searching some bugs and optimizations. | ||
The App can work, but consider this app as experimental. | ||
|
||
## Usage | ||
Web Morse Runner is a contest simulator. The target is to get as much points(QSO's) and multis(Prefix) as possible. | ||
|
||
Start my setting the parameters, like your call sign, preferred WPM etc. and start the contest by pressing the run button. | ||
|
||
Station will call you and you need to log the QSO in the fields Call/NR. | ||
Currently this app only supports the single call contest mode. This means only one station will call you at the same time and the calls are coming without the need to call CQ. | ||
|
||
Use the respective buttons or function key to respond to the stations. You need to end the QSO by sending TU. | ||
|
||
The simulator supports ESM (Enter to Send Message), means hitting the Enter key will allow you to send messages depending on the state of the QSO. | ||
|
||
|
||
## Version | ||
|
||
* 0.1-alpha (2024-11-25) initial public release. | ||
|
||
## References | ||
* [Morse Runner](https://github.com/VE3NEA/MorseRunner) (Windows/Pascal) by VE2NEA - Alex Shovkoplyas | ||
* [Morse Runner Community Edition](https://groups.io/g/MorseRunnerCE) | ||
* [Morse Runner Port](https://github.com/fritzsche/MorseRunner) (Linux/Mac) adopted by DJ1TF - Thomas Fritzsche | ||
|
||
|
||
## Thanks | ||
Like to thank VE2NEA Alex Shovkoplyas for his inspiring work on MorseRunner. | ||
|
||
|
||
|
||
|
||
73, Thomas - DJ1TF | ||
|
||
|
||
|
||
This is a experimental project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -228,3 +228,6 @@ fieldset { | |
width: 100%; | ||
} | ||
|
||
#title a { | ||
color: rgb(28, 161, 202); | ||
} |