Taiko-Drum-Controller-Arduino/sanro/sanro.ino

117 lines
3.3 KiB
Arduino
Raw Normal View History

2016-03-24 13:39:50 +01:00
/***************************************************************
* *
* Taiko Sanro - Arduino *
* Support Arduino models with ATmega32u4 microprocessors *
* *
* Copyright © 2016 Shiky Chang *
* zhangxunpx@gmail.com *
* *
***************************************************************/
#define MODE_JIRO 1
#define CHANNELS 4
// Input delay ~ (SAMPLE_CACHE_LENGTH + POWER_CACHE_LENGTH) / sample frequency
// _CACHE_LENGTH must be less than 256
#define SAMPLE_CACHE_LENGTH 150
#define POWER_CACHE_LENGTH 3
// _THRES must be less than 2^32 = 4294967296 = 4.29e9
2016-03-24 14:46:45 +01:00
#define LIGHT_THRES 2500000
#define HEAVY_THRES 5000000
2016-03-24 13:39:50 +01:00
#include <Keyboard.h>
2016-03-24 15:17:49 +01:00
#include "cache.h"
2016-03-24 13:39:50 +01:00
int channelSample [CHANNELS];
2016-03-24 14:46:45 +01:00
int lastChannelSample [CHANNELS];
2016-03-24 15:17:49 +01:00
Cache<int,SAMPLE_CACHE_LENGTH> sampleCache [CHANNELS];
2016-03-24 13:39:50 +01:00
long int power [CHANNELS];
2016-03-24 15:17:49 +01:00
Cache<long int,POWER_CACHE_LENGTH> powerCache [CHANNELS];
2016-03-24 13:39:50 +01:00
bool triggered [CHANNELS];
void setup() {
Serial.begin (9600);
Keyboard.begin ();
analogReference (DEFAULT);
for (short int i = 0; i < CHANNELS; i++) {
power [i] = 0;
2016-03-24 14:46:45 +01:00
lastChannelSample [i] = 0;
2016-03-24 13:39:50 +01:00
triggered [i] = false;
}
}
void loop() {
// Analog input: 0~5V -> 0~1023
channelSample[0] = analogRead (A0); // L don
channelSample[1] = analogRead (A1); // R don
channelSample[2] = analogRead (A2); // L kat
channelSample[3] = analogRead (A3); // R kat
for (short int i = 0; i < CHANNELS; i++) {
2016-03-24 15:17:49 +01:00
sampleCache [i].put(channelSample [i] - lastChannelSample [i]);
2016-03-24 13:39:50 +01:00
long int tempInt;
2016-03-24 15:17:49 +01:00
tempInt = sampleCache [i].get(1);
2016-03-24 13:39:50 +01:00
power [i] -= tempInt * tempInt;
2016-03-24 15:17:49 +01:00
tempInt = sampleCache [i].get();
2016-03-24 13:39:50 +01:00
power [i] += tempInt * tempInt;
if (power [i] < LIGHT_THRES) {
power [i] = 0;
}
2016-03-24 15:17:49 +01:00
powerCache [i].put(power [i]);
2016-03-24 13:39:50 +01:00
2016-03-24 14:46:45 +01:00
lastChannelSample [i] = channelSample [i];
2016-03-24 13:39:50 +01:00
for (short int j = 0; j < POWER_CACHE_LENGTH - 1; j++){
if (!triggered) {
2016-03-24 15:17:49 +01:00
if (powerCache [i].get(j + 1) > powerCache [i].get(j) || j != POWER_CACHE_LENGTH - 2) {
2016-03-24 13:39:50 +01:00
break;
} else {
#if MODE_JIRO
if (power [i] >= LIGHT_THRES) {
triggered [i] = true;
switch (i) {
case 0: Keyboard.print ('g'); break;
case 1: Keyboard.print ('h'); break;
case 2: Keyboard.print ('f'); break;
case 3: Keyboard.print ('j'); break;
}
}
#else
if (power [i] >= HEAVY_THRES) {
triggered [i] = true;
switch (i) {
case 0: Keyboard.print ('t'); break;
case 1: Keyboard.print ('y'); break;
case 2: Keyboard.print ('r'); break;
case 3: Keyboard.print ('u'); break;
}
} else if (power [i] >= LIGHT_THRES) {
triggered [i] = true;
switch (i) {
case 0: Keyboard.print ('g'); break;
case 1: Keyboard.print ('h'); break;
case 2: Keyboard.print ('f'); break;
case 3: Keyboard.print ('j'); break;
}
}
#endif
}
}
}
2016-03-24 14:46:45 +01:00
2016-03-24 13:39:50 +01:00
// This is the end of each channel
}
delay (1);
}