Adjusted default breath cal offset value. Added inverted octave rollers option for NuEVI (EVR in fingering menu). Support for CME WIDI chip connected to Teensy underside pads. Alternate Serial2 TX pad 31 for separate MIDI output, jumper sensing between pads 27 and 28 and power control for WIDI using pad 33. The old "slow midi" function (touching pinky key when pressing enter to toggle on/off) now repurpused for WIDI power control (only available when pads 27 and 28 are bridged).
This commit is contained in:
parent
bc545cccc1
commit
822e15e33d
9 changed files with 86 additions and 31 deletions
|
|
@ -36,6 +36,11 @@
|
|||
#define sLedPin 23
|
||||
#define statusLedPin 13
|
||||
|
||||
//Pins for WIDI board management
|
||||
#define widiJumperPin 28
|
||||
#define widiJumperGndPin 27
|
||||
#define widiPowerPin 33
|
||||
|
||||
//Analog input for measuring voltage
|
||||
#define vMeterPin A11
|
||||
|
||||
|
|
@ -45,6 +50,7 @@
|
|||
|
||||
//Which serial port to use for MIDI
|
||||
#define MIDI_SERIAL Serial3
|
||||
#define WIDI_SERIAL Serial2
|
||||
|
||||
// MPR121 Rollers 0x5D
|
||||
|
||||
|
|
@ -99,6 +105,11 @@
|
|||
#define biteJumperPin 11
|
||||
#define biteJumperGndPin 12
|
||||
|
||||
//Pins for WIDI board management
|
||||
#define widiJumperPin 28
|
||||
#define widiJumperGndPin 27
|
||||
#define widiPowerPin 33
|
||||
|
||||
//Analog pressure sensors. Breath and optional bite
|
||||
#define breathSensorPin A0
|
||||
#define bitePressurePin A7
|
||||
|
|
@ -123,6 +134,7 @@
|
|||
|
||||
//Which serial port to use for MIDI
|
||||
#define MIDI_SERIAL Serial3
|
||||
#define WIDI_SERIAL Serial2
|
||||
|
||||
#if defined(REVB)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue