-1:000000000000 | 0:b3daa2ebea2f |
---|---|
1 # -*- coding: utf-8 -*- | |
2 | |
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> | |
4 # | |
5 | |
6 """ | |
7 Module containing stubs for API generation of the 'audio' module. | |
8 """ | |
9 | |
10 from microbit import pin0 | |
11 | |
12 def play(source, wait=True, pin=pin0, return_pin=None): | |
13 pass | |
14 | |
15 class AudioFrame(): | |
16 def __init__(self): | |
17 pass |