14 lines
227 B
Python
14 lines
227 B
Python
|
#
|
||
|
# Example usage where "A3" is the Buzzer pin.
|
||
|
#
|
||
|
# from musictest import play
|
||
|
# play("A3")
|
||
|
#
|
||
|
|
||
|
from machine import Pin
|
||
|
import music
|
||
|
|
||
|
def play(pin_str):
|
||
|
p = Pin(pin_str, mode=Pin.OUT)
|
||
|
music.play(music.PRELUDE, pin=p)
|