mirror of
https://github.com/gdsports/USBHost_t36
synced 2024-11-11 19:55:04 -05:00
79 lines
1.5 KiB
Arduino
79 lines
1.5 KiB
Arduino
|
// Simple test of USB Host
|
||
|
//
|
||
|
// This example is in the public domain
|
||
|
|
||
|
#include "USBHost_t36.h"
|
||
|
|
||
|
USBHost myusb;
|
||
|
USBHub hub1(myusb);
|
||
|
USBHub hub2(myusb);
|
||
|
USBHub hub3(myusb);
|
||
|
KeyboardController keyboard1(myusb);
|
||
|
KeyboardController keyboard2(myusb);
|
||
|
MIDIDevice midi1(myusb);
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
while (!Serial) ; // wait for Arduino Serial Monitor
|
||
|
Serial.println("USB Host Testing");
|
||
|
myusb.begin();
|
||
|
keyboard1.attachPress(press);
|
||
|
keyboard2.attachPress(press);
|
||
|
midi1.setHandleNoteOff(OnNoteOff);
|
||
|
midi1.setHandleNoteOn(OnNoteOn);
|
||
|
midi1.setHandleControlChange(OnControlChange);
|
||
|
}
|
||
|
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
myusb.Task();
|
||
|
midi1.read();
|
||
|
}
|
||
|
|
||
|
|
||
|
void press(int key)
|
||
|
{
|
||
|
Serial.print("key ");
|
||
|
Serial.println(key);
|
||
|
//Serial.print("key ");
|
||
|
//Serial.print((char)keyboard1.getKey());
|
||
|
//Serial.print(" ");
|
||
|
//Serial.print((char)keyboard2.getKey());
|
||
|
//Serial.println();
|
||
|
}
|
||
|
|
||
|
void OnNoteOn(byte channel, byte note, byte velocity)
|
||
|
{
|
||
|
Serial.print("Note On, ch=");
|
||
|
Serial.print(channel);
|
||
|
Serial.print(", note=");
|
||
|
Serial.print(note);
|
||
|
Serial.print(", velocity=");
|
||
|
Serial.print(velocity);
|
||
|
Serial.println();
|
||
|
}
|
||
|
|
||
|
void OnNoteOff(byte channel, byte note, byte velocity)
|
||
|
{
|
||
|
Serial.print("Note Off, ch=");
|
||
|
Serial.print(channel);
|
||
|
Serial.print(", note=");
|
||
|
Serial.print(note);
|
||
|
//Serial.print(", velocity=");
|
||
|
//Serial.print(velocity);
|
||
|
Serial.println();
|
||
|
}
|
||
|
|
||
|
void OnControlChange(byte channel, byte control, byte value)
|
||
|
{
|
||
|
Serial.print("Control Change, ch=");
|
||
|
Serial.print(channel);
|
||
|
Serial.print(", control=");
|
||
|
Serial.print(control);
|
||
|
Serial.print(", value=");
|
||
|
Serial.print(value);
|
||
|
Serial.println();
|
||
|
}
|
||
|
|