Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
= launchpad
{}[https://travis-ci.org/thomasjachmann/launchpad]
This gem provides a ruby interface to access novation's launchpad programmatically. LEDs can be lighted and button presses can be responded to. Internally, launchpad's MIDI input/output is used to accomplish this.
The interfaces should be rather stable now (sorry, I changed quite a bit since the last release), so experiment with them and comment on their usability. This still is work in progress. If you need anything or think the interfaces could be improved in any way, please contact me.
Sometimes, the launchpad won't react to anything or react to/light up the wrong LEDs. Don't despair, just dis- and reconnect the thing. It seems that some (unexpected) MIDI signals make it hickup.
== This Fork
== More Info
If you don't know what launchpad is, visit:
If you're into other languages or want to know what goes on behind the scenes MIDI wise, have a look at:
== Requirements
== Compatibility
The gem is known to be compatible with the following ruby versions:
== Installation
The gem is hosted on RubyGems[https://rubygems.org/], so in order to use it, you're gonna gem install it:
gem install launchpad
== Usage
There are two main entry points:
This is a simple example (only requiring the device for output) that switches on all LEDs (for testing), resets the launchpad again and then lights the grid button at position 4/4 (from top left).
require 'launchpad/device'
device = Launchpad::Device.new device.test_leds sleep 1 device.reset sleep 1 device.change :grid, :x => 4, :y => 4, :red => :high, :green => :low
This is an interaction example lighting all grid buttons in red when pressed and keeping them lit.
require 'launchpad'
interaction = Launchpad::Interaction.new interaction.response_to(:grid, :down) do |interaction, action| interaction.device.change(:grid, action.merge(:red => :high)) end interaction.response_to(:mixer, :down) do |interaction, action| interaction.stop end
interaction.start
For more details, see the examples. examples/color_picker.rb is the most complex example with interaction.
== Future plans
== Changelog
=== v.0.3.0
=== v.0.2.2
=== v.0.2.1
=== v.0.2.0
=== v0.1.1
=== v0.1.0
== Copyright
Copyright (c) 2009 Thomas Jachmann. See LICENSE for details.
FAQs
Unknown package
We found that mrjoy-launchpad demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.