Apologies for spam; we've changed our policy by requiring approval for accounts, and deleted all existing spam and user - thanks for your help flagging content. We continue to test our forums and Vanilla software, aiming for release early in 2013. If you need to give us feedback outside the forum, contact us via http://createdigitalmusic.com/contact/ or on Facebook
how would I go about changing the switch/knob assignment in the code?
  • hello! I have soldered and cased one of the meeblip micros - it sounds great! I was wondering how I would go about modifying the code so that the switch that is by default controlling envelope sustain could be changed to activate oscillator B...

    looking at the code (I am not a great programmer) I think I could achieve this by switching the midi assignment of the switches in the MIDI Control Change parameter table section of the code - would this be correct or would it only change the channel for incoming midi from a controller?

    Alternatively - how would I go about modifying which port is mapped to which function of the synth?

    hopefully this makes sense and thanks in advance for your help!

  • meeblipmeeblip
    Accepted Answer

    Nope, you can leave that code as is. Look for the section of code following this comment:

    ; Read the digital inputs. See below for mapping to SE parameters

    Just change 'SW_SUSTAIN' to 'SW_OSCB_ENABLE' and recompile. Your switch will now turn Osc B on/off.

  • awesome! thank you!