<div dir="ltr">So I have a Grammar file where I am trying to combine letters and numbers so that people can speak a model number of a MAC address of a network device into the phone.<br><br>Problem is 8 and A are commonly being mixed up, even with the speech tuner it doesnt seem to be too accurate, is there any way in the grammar file to further enhance a Letters recognition?<br>
<br>Here is a small example, btw for example you will see below I added &quot;Ay&quot; not sure if that even valid, but with or without I am getting the same accuracy issues.<br><br>$Digit = (ONE:&quot;1&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TWO:&quot;2&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; THREE:&quot;3&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FOUR:&quot;4&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; FIVE:&quot;5&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SIX:&quot;6&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SEVEN:&quot;7&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EIGHT:&quot;8&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NINE:&quot;9&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (ZERO | O):&quot;0&quot; );<br><br>$A = (A|Ay):&quot;A&quot;;<br>$B = (B|bee):&quot;B&quot;;<br>$C = (C|see):&quot;C&quot;;<br>$D = (D|dee):&quot;D&quot;;<br>
<br>$Y = (Yankee $GARBAGE| <br>Young|Why):&quot;Y&quot;;<br><br>$Digits = {$=&#39;&#39;} (($Digit|$A|$B|$C|$D|$Y){$+=$$})&lt;1-&gt;;<br><br>Any help would be great<br><br>Fyi, I am working with Lumenvox Speech Engine<br></div>