uSpeech icon indicating copy to clipboard operation
uSpeech copied to clipboard

Speech recognition toolkit for the arduino

Results 6 uSpeech issues
Sort by recently updated
recently updated
newest added

I was looking through the project homepage here (http://arjo129.github.io/uSpeech/) and I noticed that higher accuracy could be achieved by using words ("30% - 40% accuracy if based on phonemes, up...

Does this library currently work out of the box on an Attiny 85?

When I test the module using the uSpeech library on arduino, I got some right tunning values (threshold and etc) according to debug_uSpeech app.ino for the library to provide and...

With variations in various boards, it seems necessary to update the library to used `u_int16t` rather than `int`. (which was bad practice).

Low-hanging Fruit

Currently I am using the following work around: ``` Syllable s; ... int sum = s.f+s.o+s.v+s.s+s.h; if(sum>30){ //Perform proscessing... } ``` Possibly a function to determine the probability of validity...

enhancement
Algorithm Change/Enhanchement

Me and my friend are working on an arduino project. Unfortunately our english and programming abilities are not good. Could you explain all commands with a basic english? Thank you...