We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3260761 commit cbc832dCopy full SHA for cbc832d
libraries/ESP_I2S/examples/Simple_tone/Simple_tone.ino
@@ -30,7 +30,7 @@
30
31
#include <ESP_I2S.h>
32
33
-// The GPIO pins are not fixed, most other pins can be used for the I2S function.
+// The GPIO pins are not fixed, most other pins could be used for the I2S function.
34
#define I2S_LRC 25
35
#define I2S_BCLK 5
36
#define I2S_DIN 26
@@ -70,11 +70,11 @@ void loop() {
70
sample = -1 * sample;
71
}
72
73
- // Left channel, low 8 bit then hight 8 bit
+ // Left channel, low 8 bit then high 8 bit
74
i2s.write(sample);
75
i2s.write(sample >> 8);
76
77
- // Right channel, low 8 bit then hight 8 bit
+ // Right channel, low 8 bit then high 8 bit
78
79
80
0 commit comments