comparison: Microbit/microbit/microphone.py
Microbit/microbit/microphone.py
- changeset 11
- c8198736bff3
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module containing stubs for API generation of the 'microbit.microphone' |
|
8 module. |
|
9 """ |
|
10 |
|
11 def current_event(): |
|
12 pass |
|
13 |
|
14 def was_event(event): |
|
15 pass |
|
16 |
|
17 def is_event(event): |
|
18 pass |
|
19 |
|
20 def get_events(): |
|
21 pass |
|
22 |
|
23 def set_threshold(event, value): |
|
24 pass |
|
25 |
|
26 def sound_level(): |
|
27 pass |