09-23-2024, 12:36 PM
Another small update for the speech debug (1.2.29.10) and some code to see how the default dictionary works (or doesn't!). Also a good mic well positioned helps.
Code:
TextWindow.WriteLine("Say something...")
LDSpeech.DebugMode = "True"
LDSpeech.Listen = OnListen
While ("True")
Program.Delay(10)
EndWhile
Sub OnListen
TextWindow.WriteLine(LDSpeech.LastSpoken)
EndSub