https://github.com/youpy/nerpin
A Ruby library to send manufacturer-specific or instrument-specific MIDI messages
https://github.com/youpy/nerpin
Last synced: 5 months ago
JSON representation
A Ruby library to send manufacturer-specific or instrument-specific MIDI messages
- Host: GitHub
- URL: https://github.com/youpy/nerpin
- Owner: youpy
- License: mit
- Created: 2013-01-30T15:40:05.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2025-02-08T15:40:59.000Z (over 1 year ago)
- Last Synced: 2025-09-04T20:12:46.641Z (10 months ago)
- Language: HTML
- Homepage:
- Size: 92.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nerpin [](https://github.com/youpy/nerpin/actions/workflows/ruby.yml)
A Ruby library to send manufacturer-specific or instrument-specific MIDI messages
## Supported Instruments
* [Alesis micron](http://www.alesis.com/micron)
* [Alesis ion](http://www.alesis.com/ion) (not tested)
* [Akai MINIAK](http://www.akaipro.com/miniak) (not tested)
## Installation
Add this line to your application's Gemfile:
gem 'nerpin'
And then execute:
$ bundle
Or install it yourself as:
$ gem install nerpin
## Usage
```ruby
require 'coremidi'
require 'nerpin'
destination = CoreMIDI::Destination.first
micron = Nerpin::Micron(destination)
micron.oscillator_1_octave(3)
```
## See Also
* [Alesis Ion, Micron and Akai Miniak Synth Wiki - Common FAQ](http://ion-micron-miniak.wikia.com/wiki/Common_FAQ)
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request