Skip to content

Commit f027a9c

Browse files
author
Nathan Seidle
committed
Fix example comments
1 parent 6847154 commit f027a9c

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

libraries/PDM/examples/Example1_MicrophoneOutput/Example1_MicrophoneOutput.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ void setup()
3030
Serial.begin(9600);
3131
Serial.println("SparkFun PDM Example");
3232

33-
// Turn on the PDM, set it up for our chosen recording settings, and start
34-
// the first DMA transaction.
33+
// Turn on the PDM, set it up for our chosen recording settings
3534
if (myPDM.begin(22, 23) == false) //Data, clock - These are the pin names from variant file, not pad names
3635
{
3736
Serial.println("PDM Init failed. Are you sure these pins are PDM capable?");

libraries/PDM/examples/Example2_ConfigureMic/Example2_ConfigureMic.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ void setup()
2929
Serial.begin(9600);
3030
Serial.println("SparkFun PDM Example");
3131

32-
// Turn on the PDM, set it up for our chosen recording settings, and start
33-
// the first DMA transaction.
32+
// Turn on the PDM, set it up for our chosen recording settings.
3433
if (myPDM.begin(22, 23) == false) //Data, clock - These are the pin names from variant file, not pad names
3534
{
3635
Serial.println("PDM Init failed. Are you sure these pins are PDM capable?");

libraries/PDM/examples/Example3_FullConfigure/Example3_FullConfigure.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ void setup()
5151
Serial.begin(9600);
5252
Serial.println("SparkFun PDM Example");
5353

54-
// Turn on the PDM, set it up for our chosen recording settings, and start
55-
// the first DMA transaction.
54+
// Turn on the PDM, set it up for our chosen recording settings
5655
if (myPDM.begin(22, 23) == false) //Data, clock - These are the pin names from variant file, not pad names
5756
{
5857
Serial.println("PDM Init failed. Are you sure these pins are PDM capable?");

0 commit comments

Comments
 (0)