Fix for SAX fingering and updated fingering chart (NuRAD). Experimental fingerings using rollers for harmonic series (NuEVI). LED indication for extra controller sensor and startup LED check and also fail check for MPR121 sensor boards (NuRAD).

This commit is contained in:
Johan Berglund 2020-06-04 11:43:46 +02:00
parent e68a66db84
commit c7c1825b62
9 changed files with 9334 additions and 39 deletions

7
NuEVI/led.cpp Executable file → Normal file
View file

@ -45,6 +45,13 @@ void updateSensorLEDs() {
} else {
analogWrite(pLedPin, 0);
}
#if defined(NURAD)
if (exSensorIndicator){
analogWrite(eLedPin, map(constrain(exSensorIndicator, 0, 127), 0, 127, MIN_LED_BRIGHTNESS, EXTCON_LED_BRIGHTNESS));
} else {
analogWrite(eLedPin, 0);
}
#endif
}
void ledMeter(byte indicatedValue){