cw-trainer

MorsePlayer

Demonstrations and samples here

Usage

import morseplayer.js (in head or body)

<script src="morseplayer.js"></script>

Insert the player

<morse-player>cq cq cq de F8XYZ</morse-player>

Or, in JS :

window.addEventListener("load", (event) => {
  let mp = new MorsePlayer({wpm:25});
  document.body.appendChild(mp);
  mp.play('Hello world !');
});

Styling

By default morse-player stretches and use full width. However you can define a specific width :

<style>
morse-player {
    width: 380px;
}
</style>

Attributes

The morse-player tag accept some attributes (case insensitive) :

MorsePlayer instance’s properties

Methods

constructor(options)

new MorsePlayer(options) : options are the same as those used in the attribute section.

async play(text)

play method start the morse playing of the text. The text can be passed in parameter otherwise it’s come from Text property and is cleaned. The method returns a promise wich is fulfilled at the first pause or at the end of the playing.

await player.play('test');
await player.play('this text is read after the first has finished');

Note : play() automatically pauses others instances of MorsePlayer on the page

pause()

stops the playing

stop()

stops the playing and reset the current playing time

playBoop()

play a ‘boop’ sound (used for wrong entry in simple mode)

addEventListener(event_name, func)

Register an event listener

player.addEventListener('play', () => {
    console.log('CW Time !');
});
player.addEventListener('parameterchanged', (param) => {
    console.log(`"${param}" changed to ${player[param]}`);
});

Supported events

on(event_name, func)

Register an event listener, triggered only once

player.on('play', () => {
    // this message will appear only once even if play is called multiple times
    console.log('CW Time !');
});

removeEventListener(event_name, func?) / removeEventListener(func)

Remove the event listener. If no func is provided, remove all the listeners. If only func is provided, remove this listener from all events.