novation a station

Home Forums General Panels, Components, Macros novation a station

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #524
    Widy75
    Participant
      • Topics: 10
      • Replies: 61
      • Total: 71

      hi

      exists there a panel for the novation a station ?
      otherwise i will make one <img decoding=” title=”Smile” />

      anyone interest to join the project <img decoding=” title=”Smile” />
      lg widy

      #3684
      Layzer2
      Participant
        • Topics: 21
        • Replies: 55
        • Total: 76

        if you need help with skinning it i’ll be glad to help with that
        I can create the knobless background and the knob and button uiImage components you will need.

        #3685
        atom
        Keymaster
          • Topics: 159
          • Replies: 2945
          • Total: 3104
          • ★★★★★

          I have a question, did Novation ever followed up on the KStation synth i always liked hot it sounded, actually the VStation but it was the same. Did the KStation guts ever came out as a different unit ? Always wanted to get one.

          #3686
          Layzer2
          Participant
            • Topics: 21
            • Replies: 55
            • Total: 76

            yes yes… I had my eye on the KStation for a while now…. its kinda rare. I do a search on ebay for one every once in a while.
            it is a slick unit.

            edit: the KS5 is the one i’m after. (61 key version)

            #3687
            Widy75
            Participant
              • Topics: 10
              • Replies: 61
              • Total: 71

              thx Layzer2 for your offer to help me but i will use the controllers from the virus plugin

              other question:
              what is the best way to adress packed controllers
              e.g
              CC 65 is used for ENVELOPE MODES / OSC WAVEFORM KEYSYNC
              ENVELOPES SINGLE-MULTI / OSC WAVEFORM KEYSYNC
              bit 0 amp env trigger 0=single 1=multi
              bit 1 mod env trigger 0=single 1=multi
              bit 2 fm env trigger 0=single 1=multi
              bits 3-6 4-bit wave keysync phase
              0=free-running 1..15 = 0..336 degrees in 24 degree steps

              my solution is:
              i have defined 4 combos with the right values E.g Singe = 0 and Multi = 1 and with the options:
              – don’t send values on snapshot
              – and i set the controller type to none
              and as hook i implemented for all 4 combos the same function (calles if modulator value changed)
              [code:4v8kgnrv]
              function PackedController1 ()
              console("scriped called")
              ArpEnvTrigger_ = panel:getModulatorByName("ArpEnvTrigger")
              ModEnvTrigger_ = panel:getModulatorByName("ModEnvTrigger")
              FmEnvTrigger_ = panel:getModulatorByName("FmEnvTrigger")
              WaveKeySyncPhase_ = panel:getModulatorByName("WaveKeySyncPhase")

              if ArpEnvTrigger_ ~= nil and ModEnvTrigger_ ~= nil and FmEnvTrigger_ ~= nil and WaveKeySyncPhase_ ~= nil then
              –console("midi sended")
              value = 0
              value = value + 1 * ArpEnvTrigger_:getModulatorValue();
              value = value + 2 * ModEnvTrigger_:getModulatorValue();
              value = value + 4 * FmEnvTrigger_:getModulatorValue();
              value = value + 8 * WaveKeySyncPhase_:getModulatorValue();
              m = CtrlrMidiMessage({0xb0, 0x41, value })
              panel:sendMidiMessageNow(m)
              end
              end
              [/code:4v8kgnrv]

              seems to work but , as a saw in the midi monitor ..changing one of the parameter calcs the right value and send one cc 65
              but how can i send the calculated value for cc 65 by sending all values from a snapshot … i search for the right place call the same function where all values a collected and send via one cc 65

              thx for help

              #3688
              Widy75
              Participant
                • Topics: 10
                • Replies: 61
                • Total: 71

                -after one day almost 80% finished
                -waiting for my astation from ebay to test <img decoding=” title=”Smile” /> and improve the layout
                so release maybe 1-2 weeks

                #3689
                Widy75
                Participant
                  • Topics: 10
                  • Replies: 61
                  • Total: 71

                  how knows the cc or nprn value of the distorion send level
                  i miss this value in the manual <img decoding=” title=”Smile” />

                  #3690
                  Widy75
                  Participant
                    • Topics: 10
                    • Replies: 61
                    • Total: 71

                    i got it .. cc 90 … but the manual says cc90 undefined …
                    i NEVER saw a correct manual !!!!

                    so i’m finished my a-station .. with some modification u can use it also for k-station (needs to implement packed controler11)
                    i just need more testruns so see all is working fine
                    i think i will upload it in 1-2 weeks .. im relay busy at the moment
                    if someone needs it before .. pm me

                    #3691
                    Widy75
                    Participant
                      • Topics: 10
                      • Replies: 61
                      • Total: 71

                      uploaded version 1.5 to the db

                      maybe it also can seen as a mini tutorial panel if u need functions like
                      -combination of more modulators to send one cc
                      – request sysex dump
                      – parse a sysex dump and set the modulator values
                      – send a sysex dump

                      i need this function because of sending a cc snapshot want work with the a station
                      because novation can not handle so many cc in a short time and i could nor configure a delay between sending cc from a snapshot

                      have fun <img decoding=” title=”Smile” />

                      #3692
                      atom
                      Keymaster
                        • Topics: 159
                        • Replies: 2945
                        • Total: 3104
                        • ★★★★★

                        The delay between messages in a snapshot can be configured i just forgot to expose it to the user, i’ll do that asap.

                        #3693
                        Widy75
                        Participant
                          • Topics: 10
                          • Replies: 61
                          • Total: 71

                          thx its working now
                          update the panel to v1.6

                          -fixes
                          adjust default snapshot delay from 50 to 5

                          #3694
                          Layzer2
                          Participant
                            • Topics: 21
                            • Replies: 55
                            • Total: 76

                            looks great widy, i think i’m gonna tackle my Ensoniq VFX next!

                            #3695
                            Widy75
                            Participant
                              • Topics: 10
                              • Replies: 61
                              • Total: 71

                              just update to 1.7
                              fixes:
                              – fix fm env mode depth wrong cc
                              – sysex send / received now working correct
                              – adjust snapshot delay to 3 … this works fine
                              new:
                              – global settings send / receive request … but prevent of the option write protection ..once u turned on it only can switched off on the synth itself

                              #3696
                              Widy75
                              Participant
                                • Topics: 10
                                • Replies: 61
                                • Total: 71

                                update to 1.9 on db need 925
                                with sounddump storage and morph option <img decoding=” title=”Smile” />

                                #20673
                                MCBIV
                                Participant
                                  • Topics: 0
                                  • Replies: 3
                                  • Total: 3

                                  Hello,

                                  Can i please get a copy of the A-Station Pannel…

                                  🙂

                                  #120065
                                  Alavux
                                  Participant
                                    • Topics: 1
                                    • Replies: 3
                                    • Total: 4

                                    i want it too !

                                    #120154
                                    lore
                                    Participant
                                      • Topics: 0
                                      • Replies: 1
                                      • Total: 1

                                      Yes please let me have this panel.. I have an A-Station and programming it is a pain.

                                    Viewing 17 posts - 1 through 17 (of 17 total)
                                    • The forum ‘Panels, Components, Macros’ is closed to new topics and replies.
                                    There is currently 0 users and 73 guests online
                                    No users are currently active
                                    Forum Statistics
                                    Threads: 2,495, Posts: 17,374, Members: 77,605
                                    Most users ever online was 12 on January 22, 2019 3:47 pm
                                    Ctrlr