Removing comment lines

Forgot to remove comment lines..
This commit is contained in:
Liz 2023-03-29 13:29:54 -04:00
parent 13cc2c7fc2
commit 0ecab7b543
2 changed files with 0 additions and 19 deletions

View file

@ -4,14 +4,6 @@
CircuitPython I2S Tone playback example.
Plays a tone for one second on, one
second off, in a loop.
Remove this line and all of the following docstring content before submitting to the Learn repo.
Update the three I2S pins to match the wiring chosen for the microcontroller. If you are unsure of
a proper I2S pin combination, run the pin combination script found here:
https://adafru.it/i2s-pin-combo-finder
Update the following pin names to a viable pin combination:
* BIT_CLOCK_PIN
* WORD_SELECT_PIN
* DATA_PIN
"""
import time
import array

View file

@ -3,17 +3,6 @@
"""
CircuitPython I2S WAV file playback.
Plays a WAV file once.
Remove this line and all of the following docstring content before submitting to the Learn repo.
Update the three I2S pins to match the wiring chosen for the microcontroller. If you are unsure of
a proper I2S pin combination, run the pin combination script found here:
https://adafru.it/i2s-pin-combo-finder
Update the following pin names to a viable pin combination:
* BIT_CLOCK_PIN
* WORD_SELECT_PIN
* DATA_PIN
"""
import audiocore
import board