added lock system for octave and note pots to avoid messing when change from one step to another for editing pruporse.

pull/7/head
midilab 7 years ago
parent ad05cf3920
commit 80586ad0e6
  1. 27
      examples/AcidStepSequencer/AcidStepSequencer.ino

@ -10,6 +10,9 @@
#define NOTE_VELOCITY 90 #define NOTE_VELOCITY 90
#define ACCENT_VELOCITY 127 #define ACCENT_VELOCITY 127
// Ui config
#define LOCK_POT_SENSTIVITY 4
// MIDI modes // MIDI modes
#define MIDI_CHANNEL 0 // 0 = channel 1 #define MIDI_CHANNEL 0 // 0 = channel 1
#define MIDI_MODE #define MIDI_MODE
@ -73,6 +76,7 @@ uint16_t _pot_state[4] = {0};
uint8_t _last_octave = 3; uint8_t _last_octave = 3;
uint8_t _last_note = 0; uint8_t _last_note = 0;
uint8_t _bpm_blink_timer = 1; uint8_t _bpm_blink_timer = 1;
bool _lock_pots = true; // init locked for octave and note pots
void sendMidiMessage(uint8_t command, uint8_t byte1, uint8_t byte2) void sendMidiMessage(uint8_t command, uint8_t byte1, uint8_t byte2)
{ {
@ -274,6 +278,7 @@ bool pressed(uint8_t button_pin)
} }
value = digitalRead(button_pin); value = digitalRead(button_pin);
// check, using pullup pressed button goes LOW // check, using pullup pressed button goes LOW
if ( value != *last_value && value == LOW ) { if ( value != *last_value && value == LOW ) {
*last_value = value; *last_value = value;
@ -289,13 +294,17 @@ int16_t getPotChanges(uint8_t pot_pin, uint16_t min_value, uint16_t max_value)
{ {
uint16_t value; uint16_t value;
uint16_t * last_value; uint16_t * last_value;
bool check_lock = false;
uint8_t pot_sensitivity = 1;
switch(pot_pin) { switch(pot_pin) {
case OCTAVE_POT_PIN: case OCTAVE_POT_PIN:
last_value = &_pot_state[0]; last_value = &_pot_state[0];
check_lock = true;
break; break;
case NOTE_POT_PIN: case NOTE_POT_PIN:
last_value = &_pot_state[1]; last_value = &_pot_state[1];
check_lock = true;
break; break;
case STEP_LENGTH_POT_PIN: case STEP_LENGTH_POT_PIN:
last_value = &_pot_state[2]; last_value = &_pot_state[2];
@ -310,12 +319,18 @@ int16_t getPotChanges(uint8_t pot_pin, uint16_t min_value, uint16_t max_value)
// range our value // range our value
value = (analogRead(pot_pin) / (1024 / ((max_value - min_value) + 1))) + min_value; value = (analogRead(pot_pin) / (1024 / ((max_value - min_value) + 1))) + min_value;
// check, using pullup pressed button goes LOW // a lock system to not mess with some data(pots are terrible for some kinda of user interface data controls)
if ( abs(value - *last_value) >= 1 ) { if ( check_lock == true && _lock_pots == true ) {
pot_sensitivity = LOCK_POT_SENSTIVITY;
}
if ( abs(value - *last_value) >= pot_sensitivity ) {
*last_value = value; *last_value = value;
if ( check_lock == true && _lock_pots ) {
_lock_pots = false;
}
return value; return value;
} else { } else {
*last_value = value;
return -1; return -1;
} }
} }
@ -370,6 +385,8 @@ void processButtons()
// previous step edit // previous step edit
if ( pressed(PREVIOUS_STEP_BUTTON_PIN) ) { if ( pressed(PREVIOUS_STEP_BUTTON_PIN) ) {
if ( _step_edit != 0 ) { if ( _step_edit != 0 ) {
// add a lock here for octave and note to not mess with edit mode when moving steps around
_lock_pots = true;
--_step_edit; --_step_edit;
} }
if ( _playing == false && _sequencer[_step_edit].rest == false ) { if ( _playing == false && _sequencer[_step_edit].rest == false ) {
@ -380,6 +397,8 @@ void processButtons()
// next step edit // next step edit
if ( pressed(NEXT_STEP_BUTTON_PIN) ) { if ( pressed(NEXT_STEP_BUTTON_PIN) ) {
if ( _step_edit < _step_length-1 ) { if ( _step_edit < _step_length-1 ) {
// add a lock here for octave and note to not mess with edit mode when moving steps around
_lock_pots = true;
++_step_edit; ++_step_edit;
} }
if ( _playing == false && _sequencer[_step_edit].rest == false ) { if ( _playing == false && _sequencer[_step_edit].rest == false ) {
@ -455,7 +474,7 @@ void processLeds()
// User interaction goes here // User interaction goes here
void loop() void loop()
{ {
processPots();
processButtons(); processButtons();
processLeds(); processLeds();
processPots();
} }

Loading…
Cancel
Save