Fader Bank

I see someones created code for a 6 fader wing box, is there any documentation for this like a components list and wiring diagram etc just like Box 1?

Parents
  • No, there is no wiring diagram. I made an improved new version on GitHub. Some instruction you can find as a comment in the code.
    The only recommendations for fader is a 10k Ohm linear. There are many versions on the market, you need to choose the right one for yourself.

  • Eine neue Version 1.3.1 ist bereit auf GitHub. Um z.B. auf Nomad die Faderseite 2 anzusteuern verwendet man initFaders(1, 2, 10); man muss folgende #defines ändern
    #define FADER_BANK 1
    #define FADER_PAGE 2 // Faderseite auf EOS / Nomad
    #define NUMBER_OF_FADERS 10 // Anzahl der Faders pro Seite bei EOS / Nomad

    New version 1.3.1 on GitHub. Better initFaders(), which allows you to assign the faders to a fader page
    e.g. initFaders(1, 2, 10); controls the faders on fader page 2, this can be done with changing the #defines
    #define FADER_BANK 1
    #define FADER_PAGE 2 // fader page on EOS / Nomad
    #define NUMBER_OF_FADERS 10 // size of the faders per page on EOS / Nomad

Reply
  • Eine neue Version 1.3.1 ist bereit auf GitHub. Um z.B. auf Nomad die Faderseite 2 anzusteuern verwendet man initFaders(1, 2, 10); man muss folgende #defines ändern
    #define FADER_BANK 1
    #define FADER_PAGE 2 // Faderseite auf EOS / Nomad
    #define NUMBER_OF_FADERS 10 // Anzahl der Faders pro Seite bei EOS / Nomad

    New version 1.3.1 on GitHub. Better initFaders(), which allows you to assign the faders to a fader page
    e.g. initFaders(1, 2, 10); controls the faders on fader page 2, this can be done with changing the #defines
    #define FADER_BANK 1
    #define FADER_PAGE 2 // fader page on EOS / Nomad
    #define NUMBER_OF_FADERS 10 // size of the faders per page on EOS / Nomad

Children