扬声器 V2

micro:bit V2 在电路板的背面有一个内置扬声器。

speaker on rear of micro:bit V2

默认情况下,声音输出将通过引脚 0 上的边缘连接器和内置扬声器V2。您可以将有线耳机或扬声器连接到边缘连接器上的引脚 0 和 GND 以听到声音。

可以使用此处列出的功能关闭或打开扬声器。

职能

microbit.speaker.off()

用于 off() t关闭扬声器。这不会禁用到边缘连接器引脚的声音输出。

microbit.speaker.on()

使用 on()打开扬声器。

例子

一个例子,贯穿了扬声器 API 的一些功能。

from microbit import *

# Check that the speaker is on
print(speaker.is_on())
# Play a sound
audio.play(Sound.HELLO)
sleep(2000)
# Disable the speaker
speaker.off()
# Check that the speaker is off
print(speaker.is_on())
# Play a sound. This will not be heard on the speaker, but will be heard
# on Pin 0 if you have headphones or a speaker connected.
audio.play(Sound.HELLO)