|
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 'audioio' module. |
|
8 """ |
|
9 |
|
10 class AudioOut(): |
|
11 def __init__(self, left_channel, *, right_channel=None, |
|
12 quiescent_value=0x8000): |
|
13 pass |
|
14 |
|
15 def deinit(self): |
|
16 pass |
|
17 |
|
18 def play(self, sample, *, loop=False): |
|
19 pass |
|
20 |
|
21 def stop(self): |
|
22 pass |
|
23 |
|
24 @property |
|
25 def playing(self): |
|
26 pass |
|
27 |
|
28 def pause(self): |
|
29 pass |
|
30 |
|
31 def resume(self): |
|
32 pass |
|
33 |
|
34 @property |
|
35 def paused(self): |
|
36 pass |