Click here to Skip to main content
15,868,016 members
Articles / Programming Languages / C#

Speech Recognition

Rate me:
Please Sign up or sign in to vote.
4.68/5 (80 votes)
26 Feb 20048 min read 939.5K   70.6K   239  
Voice-activated OS
<GRAMMAR LANGID="409">
	<DEFINE>
		<ID NAME="RID_ReleaseKey" VAL="0"></ID>
		<ID NAME="RID_HoldUp" VAL="1"></ID>
		<ID NAME="RID_HoldDown" VAL="2"></ID>
		<ID NAME="RID_HoldRight" VAL="3"></ID>
		<ID NAME="RID_HoldLeft" VAL="4"></ID>
		<ID NAME="RID_ShowCommands" VAL="300"></ID>
	</DEFINE>

	<RULE NAME="ReleaseKey" ID="RID_ReleaseKey" TOPLEVEL="ACTIVE">
		<L>
			<P>release</P>
			<P>stop</P>
		</L>
	</RULE>
	<RULE NAME="HoldUp" ID="RID_HoldUp" TOPLEVEL="ACTIVE">
		<P>up</P>
	</RULE>
	<RULE NAME="HoldDown" ID="RID_HoldDown" TOPLEVEL="ACTIVE">
		<P>down</P>
	</RULE>
	<RULE NAME="HoldRight" ID="RID_HoldRight" TOPLEVEL="ACTIVE">
		<P>right</P>
	</RULE>
	<RULE NAME="HoldLeft" ID="RID_HoldLeft" TOPLEVEL="ACTIVE">
		<P>left</P>
	</RULE>
	<RULE NAME="ShowCommands" ID="RID_ShowCommands" TOPLEVEL="ACTIVE">
		<P>commands list</P>
	</RULE>
</GRAMMAR>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions