cw-trainer

CWPlayer

Demonstrations and samples here

Usage

import morseplayer.js (in head or body)

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

Instantiate the player :

var player = new CWPlayer({wpm:25});
player.play('Hello world !');

CWPlayer instance’s properties

Methods

constructor(options)

The CWPlayer constructor accepts options as an Object in which keys can be :

async play(text)

play method start the morse playing of the text. The text can be passed as parameter otherwise Text property will be used. Text 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');

### async renderToFile(text)
`renderToFile` method render the morse representation of the text and save it to a .wav file. The text can be passed as parameter otherwise `Text` property will be used. Text is cleaned. The method returns a promise wich is fulfilled at the end of the conversion to .wav file.
```Javascript
await player.renderToFile();

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.

static translate(text)

Translate to Morse the specified text :

let translated = CWPlayer.translate("Bonjour");
console.log(translated);
// '-... --- -. .--- --- ..- .-.'

// Prosigns
translated = CWPlayer.translate('{AS}');
console.log(translated);
// '.-...'

static cleanText(text)

Used to clean the provided text.

let cleaned = CWPlayer.cleanText("StrÀngé ïnpùt tèxt");
console.log(cleaned);
// 'STRANGE INPUT TEXT'