Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/invisiblewrench/fluttermidicommand
A Flutter plugin to send and receive MIDI
https://github.com/invisiblewrench/fluttermidicommand
flutter flutter-plugin midi
Last synced: 1 day ago
JSON representation
A Flutter plugin to send and receive MIDI
- Host: GitHub
- URL: https://github.com/invisiblewrench/fluttermidicommand
- Owner: InvisibleWrench
- License: bsd-3-clause
- Created: 2018-11-06T20:49:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-24T08:06:21.000Z (about 1 month ago)
- Last Synced: 2024-11-06T02:38:47.690Z (2 days ago)
- Topics: flutter, flutter-plugin, midi
- Language: Swift
- Size: 2.12 MB
- Stars: 93
- Watchers: 11
- Forks: 49
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_midi_command
A Flutter plugin for sending and receiving MIDI messages between Flutter and physical and virtual MIDI devices.
Wraps CoreMIDI/android.media.midi/ALSA/win32 in a thin dart/flutter layer.
Supports| Transports | iOS | macos | Android | Linux | Windows |
|---|---|---|---|---|---|
| USB | ✓ | ✓ | ✓ | ✓ | ✓ |
| BLE | ✓ | ✓ | ✓ | ✗ | ✓ |
| Virtual | ✓ | ✓ | ✓ | ✗ | ✗ |
| Network Session | ✓ | ✓ | ✗ | ✗ | ✗ |## To install
- Make sure your project is created with Kotlin and Swift support.
- Add flutter_midi_command: ^0.5.1 to your pubspec.yaml file.
- In ios/Podfile uncomment and change the platform to 11.0 `platform :ios, '11.0'`
- On iOS, After building, Add a NSBluetoothAlwaysUsageDescription and NSLocalNetworkUsageDescription to info.plist in the generated Xcode project.
- On Linux, make sure ALSA is installed.## Getting Started
This plugin is build using Swift and Kotlin on the native side, so make sure your project supports this.
Import flutter_midi_command
`import 'package:flutter_midi_command/flutter_midi_command.dart';`
- Get a list of available MIDI devices by calling `MidiCommand().devices` which returns a list of `MidiDevice`
- Start bluetooth subsystem by calling `MidiCommand().startBluetoothCentral()`
- Observe the bluetooth system state by calling `MidiCommand().onBluetoothStateChanged()`
- Get the current bluetooth system state by calling `MidiCommand().bluetoothState()`
- Start scanning for BLE MIDI devices by calling `MidiCommand().startScanningForBluetoothDevices()`
- Connect to a specific `MidiDevice` by calling `MidiCommand.connectToDevice(selectedDevice)`
- Stop scanning for BLE MIDI devices by calling `MidiCommand().stopScanningForBluetoothDevices()`
- Disconnect from the current device by calling `MidiCommand.disconnectDevice()`
- Listen for updates in the MIDI setup by subscribing to `MidiCommand().onMidiSetupChanged`
- Listen for incoming MIDI messages on from the current device by subscribing to `MidiCommand().onMidiDataReceived`, after which the listener will recieve inbound MIDI messages as an UInt8List of variable length.
- Send a MIDI message by calling `MidiCommand.sendData(data)`, where data is an UInt8List of bytes following the MIDI spec.
- Or use the various `MidiCommand` subtypes to send PC, CC, NoteOn and NoteOff messages.
- Use `MidiCommand().addVirtualDevice(name: "Your Device Name")` to create a virtual MIDI destination and a virtual MIDI source. These virtual MIDI devices show up in other apps and can be used by other apps to send and receive MIDI to or from your app. The name parameter is ignored on Android and the Virtual Device is always called FlutterMIDICommand. To make this feature work on iOS, enable background audio for your app, i.e., add key `UIBackgroundModes` with value `audio` to your app's `info.plist` file.See example folder for how to use.
For help getting started with Flutter, view our online
[documentation](https://flutter.dev/).For help on editing plugin code, view the [documentation](https://docs.flutter.dev/development/packages-and-plugins/developing-packages#edit-plugin-package).