2020-05-16 10:58:40 -06:00
|
|
|
// Copyright 2020 Neale Pickett
|
|
|
|
// Distributed under the MIT license
|
|
|
|
// Please see https://github.com/nealey/vail-adapter/
|
|
|
|
|
2020-05-16 10:43:38 -06:00
|
|
|
// MIDIUSB - Version: Latest
|
|
|
|
#include <MIDIUSB.h>
|
|
|
|
#include <Keyboard.h>
|
|
|
|
#include "bounce2.h"
|
|
|
|
|
2021-01-18 14:56:43 -07:00
|
|
|
#ifdef ARDUINO_SEEED_XIAO_M0
|
|
|
|
#define DIT_PIN 2
|
|
|
|
#define DAH_PIN 1
|
|
|
|
#define KEY_PIN 0
|
|
|
|
#else
|
2020-05-16 10:43:38 -06:00
|
|
|
#define DIT_PIN 12
|
|
|
|
#define DAH_PIN 11
|
|
|
|
#define KEY_PIN 10
|
2021-01-18 14:56:43 -07:00
|
|
|
#endif
|
|
|
|
|
2020-05-16 10:43:38 -06:00
|
|
|
#define KBD_PIN 9
|
|
|
|
|
|
|
|
#define STRAIGHT_KEY ','
|
2021-01-18 14:35:16 -07:00
|
|
|
#define DIT_KEY '['
|
|
|
|
#define DAH_KEY ']'
|
2020-05-16 10:43:38 -06:00
|
|
|
|
|
|
|
bool iambic = true;
|
|
|
|
Bounce kbd = Bounce();
|
|
|
|
Bounce dit = Bounce();
|
|
|
|
Bounce dah = Bounce();
|
|
|
|
Bounce key = Bounce();
|
|
|
|
|
|
|
|
void setup() {
|
|
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
|
|
kbd.attach(KBD_PIN, INPUT_PULLUP);
|
|
|
|
dit.attach(DIT_PIN, INPUT_PULLUP);
|
|
|
|
dah.attach(DAH_PIN, INPUT_PULLUP);
|
|
|
|
key.attach(KEY_PIN, INPUT_PULLUP);
|
|
|
|
|
|
|
|
Keyboard.begin();
|
|
|
|
|
|
|
|
// Straight keys need to wire the dah pin to ground somehow.
|
|
|
|
// The easiest way I can think of to do this is to use a TS connector
|
|
|
|
// instead of a TRS connector.
|
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
dah.update();
|
|
|
|
}
|
|
|
|
if (dah.read() == LOW) {
|
|
|
|
iambic = false;
|
|
|
|
} else {
|
|
|
|
iambic = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
digitalWrite(LED_BUILTIN, !iambic);
|
|
|
|
}
|
|
|
|
|
|
|
|
void midiKey(bool down, uint8_t key) {
|
|
|
|
midiEventPacket_t event = {down?9:8, down?0x90:0x80, key, 0x7f};
|
|
|
|
MidiUSB.sendMIDI(event);
|
|
|
|
MidiUSB.flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
bool keyboard;
|
|
|
|
|
|
|
|
kbd.update();
|
|
|
|
keyboard = !kbd.read();
|
|
|
|
|
|
|
|
// Monitor straight key pin
|
|
|
|
if (key.update()) {
|
|
|
|
midiKey(key.fell(), 0);
|
|
|
|
if (keyboard) {
|
|
|
|
if (key.fell()) {
|
|
|
|
Keyboard.press(STRAIGHT_KEY);
|
|
|
|
} else {
|
|
|
|
Keyboard.release(STRAIGHT_KEY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monitor dit pin, which could be straight key if dah was closed on boot
|
|
|
|
if (dit.update()) {
|
|
|
|
uint8_t kbdKey, mKey;
|
|
|
|
if (iambic) {
|
|
|
|
kbdKey = DIT_KEY;
|
|
|
|
mKey = 1;
|
|
|
|
} else {
|
|
|
|
kbdKey = STRAIGHT_KEY;
|
|
|
|
mKey = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
midiKey(dit.fell(), mKey);
|
|
|
|
if (keyboard) {
|
|
|
|
if (dit.fell()) {
|
|
|
|
Keyboard.press(kbdKey);
|
|
|
|
} else {
|
|
|
|
Keyboard.release(kbdKey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Monitor dah pin
|
|
|
|
if (iambic && dah.update()) {
|
|
|
|
midiKey(dah.fell(), 2);
|
|
|
|
|
|
|
|
if (keyboard) {
|
|
|
|
if (dah.fell()) {
|
|
|
|
Keyboard.press(DAH_KEY);
|
|
|
|
} else {
|
|
|
|
Keyboard.release(DAH_KEY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|