summaryrefslogtreecommitdiff
path: root/software/rhmixxx/analog.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2014-06-03 15:40:33 (GMT)
committerChristian Pointner <equinox@helsinki.at>2014-06-03 15:40:33 (GMT)
commit55ab6ba1122ed2c04596feea6c94ea056da825a3 (patch)
tree52570c55c13996b014b3e6317061cf223ef0143b /software/rhmixxx/analog.h
parentc7befc2a68d78c3bd445433dc55bdc70ea2276e7 (diff)
enable and disable analog channel via midi works now
Diffstat (limited to 'software/rhmixxx/analog.h')
-rw-r--r--software/rhmixxx/analog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/software/rhmixxx/analog.h b/software/rhmixxx/analog.h
index 4c98157..d72be94 100644
--- a/software/rhmixxx/analog.h
+++ b/software/rhmixxx/analog.h
@@ -24,8 +24,11 @@
#define ANALOG_NUM_INPUTS 8
#define ANALOG_MIDI_NOTE_OFFSET 64
+#define ANALOG_MIDI_NOTE_ALL_INPUTS ANALOG_MIDI_NOTE_OFFSET + 31
void analog_init(void);
+void analog_enable_channel(uint8_t channel);
+void analog_disable_channel(uint8_t channel);
uint8_t analog_get_value(uint8_t channel);
void analog_task(void);