Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxguist committed Apr 22, 2024
1 parent f49dce1 commit d6ae1d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function updateForecast(forecast){

responsiveVoice.speak("Day today is,,,,. : "+$('#localDate').html(), 'UK English Female', parameters);

}, 12000); // How long you want the delay to be, measured in milliseconds.
}, 10000); // How long you want the delay to be, measured in milliseconds.



Expand Down Expand Up @@ -414,7 +414,7 @@ var cc = {

responsiveVoice.speak("Temperature in "+$('#cityName').html()+","+cc[$('#cityCode').html()]+" is. "+$('#mainTemperature').html()+" Degree Celcius."+" Its description is. "+$('#tempDescription').html()+". Today's expected minimum temperature is "+$('#mainTempLow').html()+" degree celcius. Expected maximum temperature is "+$('#mainTempHot').html()+" degree celcius. Humidity is "+$('#humidity').html()+" percent. Wind speed is "+$('#wind').html()+" meter per second.", 'UK English Female', parameters);

}, 18000); // How long you want the delay to be, measured in milliseconds.
}, 16000); // How long you want the delay to be, measured in milliseconds.



Expand Down Expand Up @@ -458,7 +458,7 @@ var days = {

responsiveVoice.speak("Forecast Temperature for "+days[$('#forecast-day-1-name').html()]+" is "+$('#forecast-day-1-main').html()+" degree celcius. Expected high is "+$('#forecast-day-1-ht').html()+" degree celcius. Expected low is "+$('#forecast-day-1-lt').html()+" degree celcius.", 'UK English Female', parameters);

}, 38000); // How long you want the delay to be, measured in milliseconds.
}, 36000); // How long you want the delay to be, measured in milliseconds.


setTimeout(function (){
Expand All @@ -467,7 +467,7 @@ var days = {

responsiveVoice.speak("Forecast Temperature for "+days[$('#forecast-day-2-name').html()]+" is "+$('#forecast-day-2-main').html()+" degree celcius. Expected high is "+$('#forecast-day-2-ht').html()+" degree celcius. Expected low is "+$('#forecast-day-2-lt').html()+" degree celcius.", 'UK English Female', parameters);

}, 50000); // How long you want the delay to be, measured in milliseconds.
}, 48000); // How long you want the delay to be, measured in milliseconds.



Expand All @@ -477,7 +477,7 @@ var days = {

responsiveVoice.speak("Forecast Temperature for "+days[$('#forecast-day-3-name').html()]+" is "+$('#forecast-day-3-main').html()+" degree celcius. Expected high is "+$('#forecast-day-3-ht').html()+" degree celcius. Expected low is "+$('#forecast-day-3-lt').html()+" degree celcius.", 'UK English Female', parameters);

}, 62000); // How long you want the delay to be, measured in milliseconds.
}, 60000); // How long you want the delay to be, measured in milliseconds.


setTimeout(function (){
Expand All @@ -486,7 +486,7 @@ var days = {

responsiveVoice.speak("Forecast Temperature for "+days[$('#forecast-day-4-name').html()]+" is "+$('#forecast-day-4-main').html()+" degree celcius. Expected high is "+$('#forecast-day-4-ht').html()+" degree celcius. Expected low is "+$('#forecast-day-4-lt').html()+" degree celcius.", 'UK English Female', parameters);

}, 74000); // How long you want the delay to be, measured in milliseconds.
}, 72000); // How long you want the delay to be, measured in milliseconds.


}
Expand Down

0 comments on commit d6ae1d2

Please sign in to comment.