Nothing would happen after a small change and recompile.
Fired up a ‘new’ sketch… slowing started adding stuff. When I add the “recognizer.init()” stmt everthing stops. Any indeas?
indent preformatted text by 4 spaces
#include “MOVIShield.h"
MOVI recognizer(true);
void setup()
{
Serial.begin(9600);
recognizer.init();
// recognizer.say(”…recognizer say");
}
void loop()
{
delay(1000);
Serial.println("Test Print: ");
}
indent preformatted text by 4 spaces