mirror of
https://git.alemi.dev/cv-keyboard.git
synced 2024-11-23 17:04:49 +01:00
Added comments
This commit is contained in:
parent
198bbaf69e
commit
eadbbbf9eb
1 changed files with 8 additions and 8 deletions
|
@ -29,13 +29,13 @@ typedef struct OctaveStatus {
|
||||||
} octst;
|
} octst;
|
||||||
|
|
||||||
int note[12] = {
|
int note[12] = {
|
||||||
C, Db, D, Eb, E, F, Gb, G, Ab, A, Bb, B }; // Note Pins above
|
C, Db, D, Eb, E, F, Gb, G, Ab, A, Bb, B }; // Note Pins above
|
||||||
int octave[4] = {
|
int octave[4] = {
|
||||||
Oct1, Oct2, Oct3, Oct4 }; // Octave Pins above
|
Oct1, Oct2, Oct3, Oct4 }; // Octave Pins above
|
||||||
int ledPins[12]{
|
int ledPins[12]{
|
||||||
19, 18, 17, 16, 15, 14, 2, 3, 4, 5, 6, 0 };
|
19, 18, 17, 16, 15, 14, 2, 3, 4, 5, 6, 0 };
|
||||||
|
|
||||||
int clock = 0;
|
int clock = 0; // Keeps track of current octave
|
||||||
octst buff;
|
octst buff;
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
|
@ -73,8 +73,8 @@ void loop() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
octst scan(int nOct) {
|
octst scan(int nOct) { // This function reads the 12 note pins and returns a struct
|
||||||
int c;
|
int c; // with 1 bool for each note
|
||||||
octst output;
|
octst output;
|
||||||
|
|
||||||
output.nOct = nOct;
|
output.nOct = nOct;
|
||||||
|
@ -85,7 +85,7 @@ octst scan(int nOct) {
|
||||||
return output;
|
return output;
|
||||||
}
|
}
|
||||||
|
|
||||||
void debug(octst input) {
|
void debug(octst input) { // Lights up 12 LEDs used to control the readings
|
||||||
int c;
|
int c;
|
||||||
for (c = 0; c < 12; c++) {
|
for (c = 0; c < 12; c++) {
|
||||||
digitalWrite(ledPins[c], input.stat[c]);
|
digitalWrite(ledPins[c], input.stat[c]);
|
||||||
|
@ -96,14 +96,14 @@ void debug(octst input) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void serialDebug(octst input) {
|
void serialDebug(octst input) { // Prints on the Serial Monitor the 12 bits just read
|
||||||
for (int c = 0; c < 12; c++) {
|
for (int c = 0; c < 12; c++) {
|
||||||
Serial.print(input.stat[c]);
|
Serial.print(input.stat[c]);
|
||||||
}
|
}
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
}
|
}
|
||||||
|
|
||||||
bool debouncedRead(int pin) {
|
bool debouncedRead(int pin) { // Should clear readings from false positives but doesn't work
|
||||||
if (digitalRead(pin) == HIGH) {
|
if (digitalRead(pin) == HIGH) {
|
||||||
if (digitalRead(pin) == HIGH) {
|
if (digitalRead(pin) == HIGH) {
|
||||||
if (digitalRead(pin) == HIGH) {
|
if (digitalRead(pin) == HIGH) {
|
||||||
|
|
Loading…
Reference in a new issue