-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmorseCodeVibrations.js
40 lines (33 loc) · 1.38 KB
/
morseCodeVibrations.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
let missYou_btn = document.querySelector(".missYou_btn")
missYou_btn.addEventListener("click", vibrateMorseCode)
var phrase = prompt("Enter Your Phrase (no punctuation):")
let morsePhrase = ""
const alphabet = ['.-', '-...', '-.-.', '-..', '.', '..-.', '--.', '....', '..', '.---', '-.-',
'.-..', '--', '-.', '---', '.--.', '--.-', '.-.', '...', '-', '..-', '...-',
'.--', '-..-', '-.--', '--..']
let engPhrase = phrase.toUpperCase()
const morseCode = engPhrase.split(' ');
for(var x = 0; x < morseCode.length; x++) {
for(var i = 0; i < morseCode[x].length; i++) {
morsePhrase = morsePhrase + alphabet[morseCode[x].charCodeAt(i)-65] + " "
}
morsePhrase = morsePhrase + "/ "
}
function vibrateMorseCode() {
// define the Morse code representation of the phrase
const morseCode = morsePhrase
// convert the Morse code string into an array of durations
const durations = morseCode.split('').map(function(symbol) {
if (symbol === '.') {
return 100; // short vibration
} else if (symbol === '-') {
return 300; // long vibration
} else if (symbol === '/') {
return 1000; // pause between words
} else {
return 0; // ignore unknown symbols
}
});
// vibrate the device using the array of durations
navigator.vibrate(durations)
}