69661f3343
This is run with uncrustify 0.70.1, and black 19.10b0.
15 lines
227 B
Python
15 lines
227 B
Python
#
|
|
# Example usage where "P3" is the Buzzer pin.
|
|
#
|
|
# from musictest import play
|
|
# play("P3")
|
|
#
|
|
|
|
from machine import Pin
|
|
import music
|
|
|
|
|
|
def play(pin_str):
|
|
p = Pin(pin_str, mode=Pin.OUT)
|
|
music.play(music.PRELUDE, pin=p)
|