Pro Micro 、MIDIキーボードにもなるってよ
Pro Micro (Arduino Leonardo)といえば自作キーボードやクイズボタン等でよく使われていますが、MIDIキーボードにもなるんです。
MIDIUSB
PlatformIOにも同名でライブラリがあります。
Arduino Uno等でよく使われる USB MIDI ライブラリはファームウェアの書き換えが必要だったりSerial.print()が使用できなくなったりしますが、こちらのライブラリは ファームウェア変更の必要はなくSerialもそのまま使用できます 。
このライブラリを使ったサンプルは以下の通り(examples以下にあります)
実行すると2秒に1回「ド」を送ります。
/*
* MIDIUSB_test.ino
*
* Created: 4/6/2015 10:47:08 AM
* Author: gurbrinder grewal
* Modified by Arduino LLC (2015)
*/
#include "MIDIUSB.h"
// First parameter is the event type (0x09 = note on, 0x08 = note off).
// Second parameter is note-on/note-off, combined with the channel.
// Channel can be anything between 0-15. Typically reported to the user as 1-16.
// Third parameter is the note number (48 = middle C).
// Fourth parameter is the velocity (64 = normal, 127 = fastest).
void noteOn(byte channel, byte pitch, byte velocity) {
midiEventPacket_t noteOn = {0x09, 0x90 | channel, pitch, velocity};
MidiUSB.sendMIDI(noteOn);
}
void noteOff(byte channel, byte pitch, byte velocity) {
midiEventPacket_t noteOff = {0x08, 0x80 | channel, pitch, velocity};
MidiUSB.sendMIDI(noteOff);
}
void setup() {
Serial.begin(115200);
}
// First parameter is the event type (0x0B = control change).
// Second parameter is the event type, combined with the channel.
// Third parameter is the control number number (0-119).
// Fourth parameter is the control value (0-127).
void controlChange(byte channel, byte control, byte value) {
midiEventPacket_t event = {0x0B, 0xB0 | channel, control, value};
MidiUSB.sendMIDI(event);
}
void loop() {
Serial.println("Sending note on");
noteOn(0, 48, 64); // Channel 0, middle C, normal velocity
MidiUSB.flush();
delay(500);
Serial.println("Sending note off");
noteOff(0, 48, 64); // Channel 0, middle C, normal velocity
MidiUSB.flush();
delay(1500);
// controlChange(0, 10, 65); // Set the value of controller 10 on channel 0 to 65
}
出力だけでなく入力ももちろん可能なので、手持ちのMIDIデバイスから送られたデータを受け取ることも可能です。
手持ちのMIDIデバイスがない場合はこちらのWEB MIDIセレクターで確認できます。
いろいろやってみた動画はこちら。
Author And Source
この問題について(Pro Micro 、MIDIキーボードにもなるってよ), 我々は、より多くの情報をここで見つけました https://qiita.com/ELIXIR/items/bff2bee8a1d32dbf9d9b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .