-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathplay_wav_from_sdcard_non_blocking.py
203 lines (170 loc) · 4.96 KB
/
play_wav_from_sdcard_non_blocking.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# The MIT License (MIT)
# Copyright (c) 2022 Mike Teachman
# https://opensource.org/licenses/MIT
# Purpose: Play a WAV audio file out of a speaker or headphones
#
# - read audio samples from a WAV file on SD Card
# - write audio samples to an I2S amplifier or DAC module
# - the WAV file will play continuously in a loop until
# a keyboard interrupt is detected or the board is reset
#
# non-blocking version
# - the write() method is non-blocking.
# - a callback function is called when all sample data has been written to the I2S interface
# - a callback() method sets the callback function
import os
import time
import micropython
from machine import I2S
from machine import Pin
if os.uname().machine.count("PYBv1"):
# ======= I2S CONFIGURATION =======
SCK_PIN = "Y6"
WS_PIN = "Y5"
SD_PIN = "Y8"
I2S_ID = 2
BUFFER_LENGTH_IN_BYTES = 40000
# ======= I2S CONFIGURATION =======
elif os.uname().machine.count("PYBD"):
import pyb
pyb.Pin("EN_3V3").on() # provide 3.3V on 3V3 output pin
os.mount(pyb.SDCard(), "/sd")
# ======= I2S CONFIGURATION =======
SCK_PIN = "Y6"
WS_PIN = "Y5"
SD_PIN = "Y8"
I2S_ID = 2
BUFFER_LENGTH_IN_BYTES = 40000
# ======= I2S CONFIGURATION =======
elif os.uname().machine.count("ESP32"):
from machine import SDCard
sd = SDCard(slot=2) # sck=18, mosi=23, miso=19, cs=5
os.mount(sd, "/sd")
# ======= I2S CONFIGURATION =======
SCK_PIN = 32
WS_PIN = 25
SD_PIN = 33
I2S_ID = 0
BUFFER_LENGTH_IN_BYTES = 40000
# ======= I2S CONFIGURATION =======
elif os.uname().machine.count("Raspberry"):
from sdcard import SDCard
from machine import SPI
cs = Pin(13, machine.Pin.OUT)
spi = SPI(
1,
baudrate=1_000_000, # this has no effect on spi bus speed to SD Card
polarity=0,
phase=0,
bits=8,
firstbit=machine.SPI.MSB,
sck=Pin(14),
mosi=Pin(15),
miso=Pin(12),
)
sd = SDCard(spi, cs)
sd.init_spi(25_000_000) # increase SPI bus speed to SD card
os.mount(sd, "/sd")
# ======= I2S CONFIGURATION =======
SCK_PIN = 16
WS_PIN = 17
SD_PIN = 18
I2S_ID = 0
BUFFER_LENGTH_IN_BYTES = 40000
# ======= I2S CONFIGURATION =======
elif os.uname().machine.count("MIMXRT"):
from machine import SDCard
sd = SDCard(1) # Teensy 4.1: sck=45, mosi=43, miso=42, cs=44
os.mount(sd, "/sd")
# ======= I2S CONFIGURATION =======
SCK_PIN = 4
WS_PIN = 3
SD_PIN = 2
I2S_ID = 2
BUFFER_LENGTH_IN_BYTES = 40000
# ======= I2S CONFIGURATION =======
else:
print("Warning: program not tested with this board")
# ======= AUDIO CONFIGURATION =======
WAV_FILE = "music-16k-16bits-mono.wav"
WAV_SAMPLE_SIZE_IN_BITS = 16
FORMAT = I2S.MONO
SAMPLE_RATE_IN_HZ = 16000
# ======= AUDIO CONFIGURATION =======
PLAY = 0
PAUSE = 1
RESUME = 2
STOP = 3
def eof_callback(arg):
global state
print("end of audio file")
# state = STOP # uncomment to stop looping playback
def i2s_callback(arg):
global state
if state == PLAY:
num_read = wav.readinto(wav_samples_mv)
# end of WAV file?
if num_read == 0:
# end-of-file, advance to first byte of Data section
pos = wav.seek(44)
_ = audio_out.write(silence)
micropython.schedule(eof_callback, None)
else:
_ = audio_out.write(wav_samples_mv[:num_read])
elif state == RESUME:
state = PLAY
_ = audio_out.write(silence)
elif state == PAUSE:
_ = audio_out.write(silence)
elif state == STOP:
# cleanup
wav.close()
if os.uname().machine.count("PYBD"):
os.umount("/sd")
elif os.uname().machine.count("ESP32"):
os.umount("/sd")
sd.deinit()
elif os.uname().machine.count("Raspberry"):
os.umount("/sd")
spi.deinit()
elif os.uname().machine.count("MIMXRT"):
os.umount("/sd")
sd.deinit()
audio_out.deinit()
print("Done")
else:
print("Not a valid state. State ignored")
audio_out = I2S(
I2S_ID,
sck=Pin(SCK_PIN),
ws=Pin(WS_PIN),
sd=Pin(SD_PIN),
mode=I2S.TX,
bits=WAV_SAMPLE_SIZE_IN_BITS,
format=FORMAT,
rate=SAMPLE_RATE_IN_HZ,
ibuf=BUFFER_LENGTH_IN_BYTES,
)
audio_out.irq(i2s_callback)
state = PAUSE
wav = open("/sd/{}".format(WAV_FILE), "rb")
_ = wav.seek(44) # advance to first byte of Data section in WAV file
# allocate a small array of blank samples
silence = bytearray(1000)
# allocate sample array buffer
wav_samples = bytearray(10000)
wav_samples_mv = memoryview(wav_samples)
_ = audio_out.write(silence)
# add runtime code here ....
# changing 'state' will affect playback of audio file
print("starting playback for 10s")
state = PLAY
time.sleep(10)
print("pausing playback for 10s")
state = PAUSE
time.sleep(10)
print("resuming playback for 15s")
state = RESUME
time.sleep(15)
print("stopping playback")
state = STOP