docs(amyboard): document sending MIDI out from Python#1024
Merged
Conversation
Add a "Sending MIDI out" subsection to docs/amyboard/python.md covering the two ways to emit MIDI from AMYboard: tulip.midi_out() for arbitrary raw bytes, and amy.send(wave=amy.AMY_MIDI) for AMY-native output that can be driven by AMY's sequencer for sample-accurate timing. Links to the AMY MIDI docs. Closes #588. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #588.
Adds a "Sending MIDI out" subsection to
docs/amyboard/python.md(under "Working with MIDI in Python"), documenting the two ways to emit MIDI from AMYboard:tulip.midi_out([...])— send arbitrary raw MIDI bytes immediately (note on/off, CC, sysex), out the MIDI out jack and the USB MIDI connection.amy.send(osc=…, wave=amy.AMY_MIDI, …)— turn an oscillator into a MIDI sender. Because it reacts to ordinary note events, it can be driven by AMY's sequencer for sample-accurate, tempo-locked MIDI output — the "AMY-sequenced MIDI output" the issue asks for. Includes a sequenced note-on/off example.Cross-links to the new AMY MIDI-out docs (companion PR shorepine/amy#749).
Note: the broader request in the issue thread (record MIDI-in into a track, play two synced tracks back out) depends on Tulip track-recording features rather than these primitives, so it's intentionally out of scope here.
🤖 Generated with Claude Code