mirror of
https://git.alemi.dev/cv-keyboard.git
synced 2024-11-12 20:09:21 +01:00
Update cvkeyboard.ino
This commit is contained in:
parent
1a37d52310
commit
4c20ccec00
1 changed files with 17 additions and 15 deletions
|
@ -53,38 +53,40 @@ void setup()
|
|||
|
||||
void loop() {
|
||||
scan();
|
||||
send();
|
||||
}
|
||||
|
||||
void send() {
|
||||
for (int c = 48; c >= 0; c--) {
|
||||
if (flip[c] == HIGH) {
|
||||
flip[c] = LOW;
|
||||
noteBuffer = c + noteOffset;
|
||||
if (status[c] == HIGH) {
|
||||
MIDI.sendNoteOn(noteBuffer, velocity, 1);
|
||||
}
|
||||
else if (status[c] == LOW) {
|
||||
MIDI.sendNoteOff(noteBuffer, velocity, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void scan() {
|
||||
for (int cOctave = 0; cOctave < 4; cOctave++) {
|
||||
octBuffer = 12 * cOctave;
|
||||
/*octBuffer = 12 * cOctave;*/
|
||||
digitalWrite(octave[cOctave], HIGH);
|
||||
|
||||
|
||||
for (int cNote = 0; cNote < 12; cNote++) {
|
||||
if (noteCounter[cNote + octBuffer] > 0) {
|
||||
noteCounter[cNote + octBuffer]--;
|
||||
}
|
||||
else {
|
||||
noteCounter[cNote + octBuffer] = offCounter;
|
||||
|
||||
buffer = digitalRead(note[cNote]);
|
||||
|
||||
if (buffer ^ status[cNote + octBuffer]) {
|
||||
status[cNote + octBuffer] = buffer;
|
||||
flip[cNote + octBuffer] = HIGH;
|
||||
noteBuffer = cNote + octBuffer + noteOffset;
|
||||
if (buffer == HIGH) {
|
||||
MIDI.sendNoteOn(noteBuffer, velocity, 1);
|
||||
}
|
||||
if (buffer == LOW) {
|
||||
MIDI.sendNoteOff(noteBuffer, velocity, 1);
|
||||
}
|
||||
}
|
||||
else {
|
||||
flip[cNote + octBuffer] = LOW;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
digitalWrite(octave[cOctave], LOW);
|
||||
|
|
Loading…
Reference in a new issue