Quote:
Originally Posted by kalijav
I've recently installed this mod, and I am having trouble with the " set course " command for courses starting by 2, like 285 for example, very often it only takes 085 as a command.
I was wondering, could it be a problem with the recognition of 2 and to ?
Or maybe a conflict with the "set course to" command ?
Maybe it's just my accent, but I thought I should give a try here  Maybe I'm saying the command too fast/slow. Any advice welcome, thanks.
Subsidiary question, does it help to "train" the win7 speech recognition ?
|
I also had problems with any course starting with 2 hundred.
It take a little getting used to but you have to say two twice.
Once for the word TO and again for TWO.
E.G.
"set new course two two four three"
The speech rec. still get it wrong and take a few tries, but it mostly gets it right now.
@ MiTon
The starboard and port are the wrong way.
I ask for 5 degrees to port and it comes up with 5 degrees to starboard.
It's an easy fix in the Speech Recognition.py file. Just though I point it out so it can be fixed in future releases.
Line 122
Quote:
elif cmd == "Set_rudder":
if ( param1 > 35 ): return
param1 /= Menu.GuiDials.mps_kt / 2
# if param2 is 1, then 'port' was said instead of 'starboard', so we invert the number of degrees.
if param2 == 1: param1 *= -1
param1 = Utility.FloatMemoryAsDWORD( param1 )
|
Just change the 1 (highlighted yellow) to a 0.