5f7a8e5301
* update yotta defaults for 16kb devices * refactor deprecated blocks * updates for button events * update button events * update refference * update docs * update docs * update button event blocks * update docs * update block id
1.1 KiB
1.1 KiB
play
Play a sound expression.
soundExpression.giggle.play()
A sound expression is a preformatted set of tones that create a certain sound. There are several sounds to choose from. The sound is started and your program then continues.
~ reminder
This block requires the micro:bit V2 hardware. If you use this block with a micro:bit v1 board, you will see the 927 error code on the screen.
~
Parameters
In blocks, the sound is selected from the list in the ||music:play sound||
block.
soundExpression.giggle.play()
When coding in JavaScript or Python, the sound is a soundExpression
object which from which you run the play()
function from. For example, to play the soaring
sound, select soaring
from the soundExpression
namespace and run play()
:
soundExpression.soaring.play()
Example
Play the twinkle
sound on the speaker.
soundExpression.twinkle.play()