File tree Expand file tree Collapse file tree 4 files changed +23
-10
lines changed Expand file tree Collapse file tree 4 files changed +23
-10
lines changed Original file line number Diff line number Diff line change 3
3
# SPDX-License-Identifier: MIT
4
4
5
5
"""
6
- `adafruit_midi.continue `
6
+ `adafruit_midi.continue_ `
7
7
================================================================================
8
8
9
9
Continue MIDI message.
14
14
Implementation Notes
15
15
--------------------
16
16
17
+ :code:`continue` is a `reserved Python keyword <https://docs.python.org/3/reference/lexical_analysis.html#keywords>`_
18
+ hence the :code:`_` postfix of the name.
17
19
"""
18
20
19
21
from .midi_message import MIDIMessage
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ def __init__(self, status):
306
306
class MIDIBadEvent (MIDIMessage ):
307
307
"""A bad MIDI message, one that could not be parsed/constructed.
308
308
309
- :param list data : The MIDI status including any embedded channel number
309
+ :param list msg_bytes : The MIDI status including any embedded channel number
310
310
and associated subsequent data bytes.
311
311
:param Exception exception: The exception used to store the repr() text representation.
312
312
Original file line number Diff line number Diff line change @@ -28,14 +28,16 @@ class MtcQuarterFrame(MIDIMessage):
28
28
"""MIDI Time Code (MTC) Quarter Frame message.
29
29
30
30
:param msgtype: The quarter frame message type:
31
- - 0: Frame count LS nibble
32
- - 1: Frame count MS nibble
33
- - 2: Seconds count LS nibble
34
- - 3: Seconds count MS nibble
35
- - 4: Minutes count LS nibble
36
- - 5: Minutes count MS nibble
37
- - 6: Hours count LS nibble
38
- - 7: Hours count MS nibble and SMPTE Type
31
+
32
+ 0. Frame count LS nibble
33
+ 1. Frame count MS nibble
34
+ 2. Seconds count LS nibble
35
+ 3. Seconds count MS nibble
36
+ 4. Minutes count LS nibble
37
+ 5. Minutes count MS nibble
38
+ 6. Hours count LS nibble
39
+ 7. Hours count MS nibble and SMPTE Type
40
+
39
41
:param value: The quarter frame value for the specified type.
40
42
"""
41
43
Original file line number Diff line number Diff line change 13
13
.. automodule :: adafruit_midi.control_change
14
14
:members:
15
15
16
+ .. automodule :: adafruit_midi.control_change_values
17
+ :members:
18
+
19
+ .. automodule :: adafruit_midi.continue_
20
+ :members:
21
+
16
22
.. automodule :: adafruit_midi.midi_message
17
23
:members:
18
24
25
+ .. automodule :: adafruit_midi.mtc_quarter_frame
26
+ :members:
27
+
19
28
.. automodule :: adafruit_midi.note_off
20
29
:members:
21
30
You can’t perform that action at this time.
0 commit comments