-
Notifications
You must be signed in to change notification settings - Fork 3
Create ble_midi_simple_scanner.py #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,65 @@ | ||
| # SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries | ||
| # SPDX-License-Identifier: MIT | ||
|
|
||
| """ | ||
| This example acts as a BLE scanner for MIDI devices. | ||
| Specifically, it connects and pairs with a device running ble_midi_simple | ||
| """ | ||
|
|
||
| import time | ||
|
|
||
| import adafruit_ble | ||
| import adafruit_midi | ||
| from adafruit_ble.advertising.standard import ProvideServicesAdvertisement | ||
|
|
||
| # These import auto-register the message type with the MIDI machinery. | ||
| from adafruit_midi.control_change import ControlChange | ||
| from adafruit_midi.midi_message import MIDIUnknownEvent | ||
| from adafruit_midi.note_off import NoteOff | ||
| from adafruit_midi.note_on import NoteOn | ||
| from adafruit_midi.pitch_bend import PitchBend | ||
|
|
||
| import adafruit_ble_midi | ||
| from adafruit_ble_midi import MIDIService | ||
|
|
||
| # Use default HID descriptor | ||
| midi_service = adafruit_ble_midi.MIDIService() | ||
| advertisement = ProvideServicesAdvertisement(midi_service) | ||
|
|
||
| ble = adafruit_ble.BLERadio() | ||
| if ble.connected: | ||
| for c in ble.connections: | ||
| c.disconnect() | ||
|
|
||
| midi = adafruit_midi.MIDI(midi_out=midi_service, midi_in=midi_service, out_channel=0) | ||
|
|
||
| print("advertising") | ||
| ble.start_advertising(advertisement) | ||
|
|
||
| while True: | ||
| print("Waiting for connection to a MIDI device") | ||
| for advertisement in ble.start_scan(ProvideServicesAdvertisement, timeout=60): | ||
| if MIDIService not in advertisement.services: | ||
| continue | ||
| ble.connect(advertisement) | ||
| break | ||
|
|
||
| if ble.connections: | ||
| for connection in ble.connections: | ||
| if connection.connected and not connection.paired: | ||
| print("Connected; Pairing with the MIDI device") | ||
| connection.pair() | ||
|
|
||
| if connection.connected and connection.paired: | ||
| print("Paired") | ||
| midi_service = connection[MIDIService] | ||
| midi = adafruit_midi.MIDI(midi_out=midi_service, midi_in=midi_service) | ||
|
|
||
| while ble.connected: | ||
| midi_in = midi.receive() | ||
| while midi_in: | ||
| if not isinstance(midi_in, MIDIUnknownEvent): | ||
| print(time.monotonic(), midi_in) | ||
| midi_in = midi.receive() | ||
| print("Disconnected") | ||
| print() | ||
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.
Uh oh!
There was an error while loading. Please reload this page.