- ID: isd1820
- Name: Grove Recorder
- Other Names: ISD1820 Recorder
- Category: sound
- Manufacturer: seeed
- Connection: gpio
This class implements support for the Grove Voice Recorder. There are two digital pins: one that enables recording, and the other that plays back what was previously recorded.
cout << "Supply any argument to the command line to record." << endl;
cout << "Running this example without arguments will play back any " << endl;
cout << "previously recorded sound." << endl;
cout << "There is approximately 10 seconds of recording time." << endl;
cout << endl;
bool doRecord = false;
if (argc > 1)
doRecord = true;
if (doRecord)
else
cout << "Sleeping for 15 seconds..." << endl;
sleep(15);
if (doRecord)
else