elechouse / VoiceRecognitionV3

Arduino library for elechouse Voice Recognition V3 module
79 stars 49 forks source link

VR3 in Hardware Serial (Arduino Mega) #10

Open hbadotti opened 6 years ago

hbadotti commented 6 years ago

How can I make it work with hardware serial pin from Arduino Mega?

baritonomarchetto commented 6 years ago

Same issue here, mainly because you cannot replace the function

myVR.recognize(buf, 50);

With

Serial.recognize(buf, 50);

being that ".recognize()" is not a Serial handler ...

anyone?

hbadotti commented 6 years ago

Yea, I'm using hardware raw commands... Like serial.write and listen to make it work...