Interface HM2007 voice recognizer to arduino

How to interface HM2007 voice recognizer to arduino uno??When i speak a pre trained word through the mic in HM2007, i wanna get its corresponding number to the arduino. I'm confused of both hardware interfacing and code for interface.Pls help....

Do a google search for:-
1366028142_45047_FT60108_1180-datasheet.pdf
In the data sheet you will see a schematic showing the output is on connector CN1. This is a 10 way connector the first two pins are ground and should be connected to the arduino's ground. The following 8 are the data pins giving the binary value of the number displayed on the seven segment displays in a BCD ( binary coded decimal ) format. Simply connect these to 8 arduino input pins. Reading these pins will read what number is being shown.

Thankyou so much mike... :slight_smile: