seq303

Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: vst.dll or vst.au from a panel or bzpanel? #71982
    seq303
    Participant
      • Topics: 8
      • Replies: 13
      • Total: 21

      Hello,

      Yes the Step Sequencer is TOP 🙂 I love it to!

      first times thank you. I have created yesterday a dll but unfortunately not all png files are taken over. I look at what it is. Does the whole synonymous meim MAC as AU? Where do you live ?

      Greeting Michael

      in reply to: vst.dll or vst.au from a panel or bzpanel? #71969
      seq303
      Participant
        • Topics: 8
        • Replies: 13
        • Total: 21

        Version: 5.4.29
        Build date: Wed Dec 21 16:25:22 CEST 2016
        Branch: Nightly
        Juce: 4.2.1
        libusb: 1.0.19
        liblo: 0.28
        lua: Lua 5.1.4
        luabind: 0.9.0
        boost: 1.57.0

        I’m not the author of just my name !

        What version do i need ! ??

        Thanks from Germany!

        Greetings

        Michael

        in reply to: Modulator List VisualColumns edit #71966
        seq303
        Participant
          • Topics: 8
          • Replies: 13
          • Total: 21

          Thanks I Use now Excel xml ! It works fine !

          Greetings

          Michael

          in reply to: Lua install #71693
          seq303
          Participant
            • Topics: 8
            • Replies: 13
            • Total: 21

            ok Thanks!

            in reply to: LFO to CC whit Lua #71690
            seq303
            Participant
              • Topics: 8
              • Replies: 13
              • Total: 21

              The Test Panel

              http://ctrlr.org/wp-content/uploads/2017/03/LFO_TEST.panel

              • This reply was modified 7 years, 1 month ago by seq303.
              • This reply was modified 7 years, 1 month ago by seq303.
              • This reply was modified 7 years, 1 month ago by seq303.
              in reply to: LFO to CC whit Lua #71689
              seq303
              Participant
                • Topics: 8
                • Replies: 13
                • Total: 21

                Hi what do I have to change so the code also runs in ctrlr? The code is only available in Zerobrainstudio!

                http://ctrlr.org/wp-content/uploads/2017/03/LFOtoCC.lua

                • This reply was modified 7 years, 1 month ago by seq303.
                • This reply was modified 7 years, 1 month ago by seq303.
                in reply to: Lua install #71685
                seq303
                Participant
                  • Topics: 8
                  • Replies: 13
                  • Total: 21

                  s = 5

                  function sleep(s)
                  local ntime = os.clock() + s
                  repeat until os.clock() > ntime
                  end

                  Hi can I use sleep ()
                  Use in Ctrlr?

                  in reply to: Lua install #71673
                  seq303
                  Participant
                    • Topics: 8
                    • Replies: 13
                    • Total: 21

                    I have ZeroBrainStudio
                    Here runs the code example without problems!

                    for i=10,1,-1
                    do
                    print(i)
                    end

                    for i=0,100,1
                    do
                    print(i)
                    end

                    In the Ctrlr LUA Console unfortunately not!
                    why?
                    What am I doing wrong ?

                    Info:

                    Version: 5.4.29
                    Build date: Wed Dec 21 16:25:22 CEST 2016
                    Branch: Nightly
                    Juce: 4.2.1
                    libusb: 1.0.19
                    liblo: 0.28
                    lua: Lua 5.1.4
                    luabind: 0.9.0
                    boost: 1.57.0

                    in reply to: LFO to CC whit Lua #71666
                    seq303
                    Participant
                      • Topics: 8
                      • Replies: 13
                      • Total: 21

                      Hi,

                      How can I use socket.sleep() in clrtr?

                      I need a delay() in ms. 0ms – 800ms

                      Can someone please help me?

                      I need an example in clrtr Lua!

                      Greeting Michael

                      in reply to: LFO to CC whit Lua #71663
                      seq303
                      Participant
                        • Topics: 8
                        • Replies: 13
                        • Total: 21

                        Hi,
                        I once made an example for the Arduino. It works fine with the Arduino Nano
                        How do I do this in Lua? Greetings Michael

                        Code ——————————————————————-

                        // Arduino Example LFO CC MIDI OUT

                        // LFO
                        String Modulator_BUTTON_Name = “LFO_BUTTON”;
                        boolean Modulator_BUTTON_Value = true; // 0-1 on/Off
                        String Modulator_LFO_SPEED_Name = “LFO_SPEED”;
                        int Modulator_LFO_SPEED_Value = 400; // 0-127 0ms – 800ms
                        // Taget
                        String Modulator_CUTTOFF_Name = “FADER_CUTTOFF”;
                        int Modulator_CUTTOFF_Value = 0; // 0-127 0ms – 800ms

                        const int MIDI_OUT_LED_PIN = 13;
                        const int CC = 0xB1;
                        const int CC_Nummer = 0x4a;
                        int CC_Wert = 0; // 0-127
                        int LFO_Speed = 150; // 0 ms – 800 ms

                        void setup()
                        {
                        pinMode(MIDI_OUT_LED_PIN, OUTPUT);
                        Serial.begin(31250);
                        }

                        void loop()
                        {
                        if (Modulator_BUTTON_Value == true)
                        {
                        for (int CC_Wert = 0x00; CC_Wert < 0x7f; CC_Wert ++) { CC_WRITE(CC,CC_Nummer,CC_Wert); delay(LFO_Speed); } for (int CC_Wert = 0x7f; CC_Wert > 0x00; CC_Wert –)
                        {
                        CC_WRITE(CC,CC_Nummer,CC_Wert);
                        delay(LFO_Speed);
                        }
                        }

                        }

                        // Funktion
                        void CC_WRITE(int CC, int CC_Nummer, int CC_Wert)
                        {
                        digitalWrite(MIDI_OUT_LED_PIN, HIGH);
                        delay(2);
                        digitalWrite(MIDI_OUT_LED_PIN, LOW);
                        Serial.write(CC);
                        Serial.write(CC_Nummer);
                        Serial.write(CC_Wert);
                        }

                        in reply to: Modulator List VisualColumns edit #71598
                        seq303
                        Participant
                          • Topics: 8
                          • Replies: 13
                          • Total: 21

                          Export all parameter (Columns) to html or text would be great !

                          Visible Columns = Select all

                          in reply to: New ImageSlider as PNG #71596
                          seq303
                          Participant
                            • Topics: 8
                            • Replies: 13
                            • Total: 21

                            Hi JaseFOS

                            many thanks. The tool is great!

                            Greetings Michael

                            in reply to: NRPN – Am I doing something wrong, or bug? #58512
                            seq303
                            Participant
                              • Topics: 8
                              • Replies: 13
                              • Total: 21

                              Hello,

                              I would like to build a controller for my Korg Electribe SX.
                              But there are problems with NRPN controllers. I would like to send this.

                              Drum Part 1 Volumen

                              MSB 99,12
                              LSB 98,10
                              Data Entry MSB 6, Wert

                              or

                              B0 63 0C B0 62 0A B0 06 pp (pp=Wert)

                              What is the correct syntax in ctrlr ?

                              what MidiMessageType ? Multi or CC ?

                              Please post an example!

                              nice greetings

                              Michael

                              Attachments:
                              You must be logged in to view attached files.
                            Viewing 13 posts - 1 through 13 (of 13 total)
                            Ctrlr