We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b48ae99 commit c8a7531Copy full SHA for c8a7531
libraries/ESP_I2S/examples/Simple_tone/Simple_tone.ino
@@ -70,11 +70,11 @@ void loop() {
70
sample = -1 * sample;
71
}
72
73
- // Right channel, low 8 bit then hight 8 bit
+ // Left channel, low 8 bit then hight 8 bit
74
i2s.write(sample);
75
i2s.write(sample >> 8);
76
77
- // Left channel, low 8 bit then hight 8 bit
+ // Right channel, low 8 bit then hight 8 bit
78
79
80
0 commit comments