Skip to content

Commit c8a7531

Browse files
committed
edit comment
1 parent b48ae99 commit c8a7531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: libraries/ESP_I2S/examples/Simple_tone/Simple_tone.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ void loop() {
7070
sample = -1 * sample;
7171
}
7272

73-
// Right channel, low 8 bit then hight 8 bit
73+
// Left channel, low 8 bit then hight 8 bit
7474
i2s.write(sample);
7575
i2s.write(sample >> 8);
7676

77-
// Left channel, low 8 bit then hight 8 bit
77+
// Right channel, low 8 bit then hight 8 bit
7878
i2s.write(sample);
7979
i2s.write(sample >> 8);
8080

0 commit comments

Comments
 (0)