We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now the phonetic readout of the pilot plus lap plus time is a bit hard to comprehend because the lap number bleeds into the time.
Example: "Paul lap one one minute five seconds"
I believe this is the line responsible:
delta5_race_timer/src/delta5server/templates/race.html
Line 94 in 47a3573
I am going to try modifying this function on our timer to something like this (to be tested still):
socket.on('phonetic_data', function (msg) { // var $ttstest = msg.pilot + " lap " + msg.lap + " " + msg.phonetic; var phoneticLap=""; switch(msg.lap){ case 1: phoneticLap = "st"; break; case 2: phoneticLap = "nd"; break; case 3: phoneticLap = "rd"; break; default: phoneticLap = "th"; break; } var $ttstest = msg.pilot + " " + msg.lap + phoneticLap + " lap " + msg.lap + " " + msg.phonetic; speak('<div class="speech">' + $ttstest + '</div> div.speech'); })
That should hopefully cause it to say: "Paul first lap one minute five seconds"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now the phonetic readout of the pilot plus lap plus time is a bit hard to comprehend because the lap number bleeds into the time.
Example: "Paul lap one one minute five seconds"
I believe this is the line responsible:
delta5_race_timer/src/delta5server/templates/race.html
Line 94 in 47a3573
I am going to try modifying this function on our timer to something like this (to be tested still):
That should hopefully cause it to say: "Paul first lap one minute five seconds"
The text was updated successfully, but these errors were encountered: