public void GetWeather(SpeechRecognizedEventArgs args) { if (!Weather.weather.enabled) { return; } Console.WriteLine(args.Result.Text); Form_Remator.synth_SynthesizeSpeech("It's currently 65 degrees outside"); }
public void GetDate(SpeechRecognizedEventArgs args) { Form_Remator.synth_SynthesizeSpeech(DateTime.Now.ToString("dddd, MMMM d")); }
public void GetTime(SpeechRecognizedEventArgs args) { Form_Remator.synth_SynthesizeSpeech(DateTime.Now.ToString("hh:mm tt")); Console.WriteLine(DateTime.Now.ToString("hh:mm tt")); }