Possemo

Forum Replies Created

Viewing 20 posts - 601 through 620 (of 638 total)
  • Author
    Posts
  • in reply to: New to CTRLR, plugin and midi controller #68028
    Possemo
    Participant
      • Topics: 14
      • Replies: 638
      • Total: 652
      • ★★★

      Already tried resolving the issue with the DAW? For example a second track (input all channels, same port) without Ctrlr-plugin, out to synth.

      in reply to: uiLabel to show patch name #68027
      Possemo
      Participant
        • Topics: 14
        • Replies: 638
        • Total: 652
        • ★★★

        This is how I am doing this job:

        if PATCHORTONE==0x30 then patchData=SysexMessage:getData()
        
        	pname=patchData:getRange(7,18):toString()
        	panel:getComponent("PatchName"):setProperty("uiLabelText",pname,false)
        in reply to: Linux Dump Requests Broken #68016
        Possemo
        Participant
          • Topics: 14
          • Replies: 638
          • Total: 652
          • ★★★

          I just has a similar problem. I try to receive a BulkDump from the MKS-70. These are not that big (64×66 bytes and 50×88 bytes) but they are 64+50 separate sysex-messages. I saw that someting is not right, because the end-byte (F7) was altered on some messages (not on all messages). By playing around with the midiReceived script I got it working. I guess the Dumps are to fast to get done.

          I am not 100% sure but I think the getRange made the difference. getRange is in fact not needed and when I commented it out it worked fine…

          BulkPatchData=SysexMessage:getData() --:getRange(0,65)

          But MKS-70 has a small BulkDump. Don’t know it this will work on bigger ones, and I have to say I am using Windows10. So this may be another issue.

          • This reply was modified 8 years, 3 months ago by Possemo.
          • This reply was modified 8 years, 3 months ago by Possemo.
          in reply to: New to CTRLR, plugin and midi controller #68015
          Possemo
          Participant
            • Topics: 14
            • Replies: 638
            • Total: 652
            • ★★★

            Have you tried the Midi-Thru options menu?

            in reply to: last used modulator #68005
            Possemo
            Participant
              • Topics: 14
              • Replies: 638
              • Total: 652
              • ★★★

              Thank you dasfaker!

              in reply to: last used modulator #68003
              Possemo
              Participant
                • Topics: 14
                • Replies: 638
                • Total: 652
                • ★★★

                Ah, maybe it helps when I tell what I am trying to do:

                serveral buttons should call the same Lua script. All buttons should feed the same variable with different values.

                Thanks for reading.

                in reply to: SetBit #68001
                Possemo
                Participant
                  • Topics: 14
                  • Replies: 638
                  • Total: 652
                  • ★★★

                  Thanks atom, now I see that the error message was quite clear…

                  in reply to: setModulatorValue is sending to MIDI-Out #67969
                  Possemo
                  Participant
                    • Topics: 14
                    • Replies: 638
                    • Total: 652
                    • ★★★

                    Hi bloodykot,
                    Life has been hard – I had so much other things to do. But now I finally managed to test this out.
                    With the newest Ctrlr-Build (5.3.183) this issue got even more important. Maybe it is me that broke something in my panel, don’t know. Anyway – the “false” parameter on the “setModulatorValue” command does not seem to work anymore.

                    But hey, this works like a charm:
                    panel:setPropertyString(“panelMidiPauseOut”,”1″)
                    after Sysex-Messages reenable:
                    panel:setPropertyString(“panelMidiPauseOut”,”0″)

                    That’s it. Thanks bloodykot

                    in reply to: concatenate nibbles? #67938
                    Possemo
                    Participant
                      • Topics: 14
                      • Replies: 638
                      • Total: 652
                      • ★★★

                      Thanks atom, looks nice. If my subroutine does not work I will try Bitop.

                      in reply to: concatenate nibbles? #67883
                      Possemo
                      Participant
                        • Topics: 14
                        • Replies: 638
                        • Total: 652
                        • ★★★

                        Tried somthing out that I found somewhere:

                        SysexByte1 = 5
                        SysexByte2 = 7
                        
                        upper = SysexByte1
                        upper = 16*upper
                        if upper > 127 then upper = upper - 128 end
                        console (string.format ("upper=%d", upper))
                        
                        lower = SysexByte2
                        
                        combi = upper+lower
                        console (string.format ("combi=%d", combi))

                        could this do the trick? the upper 4 bits are always 0000 so we just have to convert the upper component. For this test i used no variables, assuming the sysex bytes were converted to decimal before.

                        in reply to: setModulatorValue is sending to MIDI-Out #58454
                        Possemo
                        Participant
                          • Topics: 14
                          • Replies: 638
                          • Total: 652
                          • ★★★

                          Great, looks like a valid path. And as it just concerns uiCombos it’s not too much work. Unfortunately I don’t have much time at the moment but I definitely want to test this asap.

                          in reply to: setModulatorValue is sending to MIDI-Out #58186
                          Possemo
                          Participant
                            • Topics: 14
                            • Replies: 638
                            • Total: 652
                            • ★★★

                            Ah I see. There was a trhead about this:
                            http://ctrlr.org/forums/topic/disable_midi_device_lua/

                            Got to see how dasfaker did it. His Virus panels look like serious sh*t. A pity I do not have a Virus.

                            Thanks bloodykot. Will keep you informed if I find out something new.

                            Edit:
                            So far that’s all I found in dasfakers Viruspanel:
                            panel:setPropertyString(“panelMidiInputFromHost”,”1″)
                            panel:setPropertyString(“panelMidiOutputToHost”,”1″)
                            panel:setPropertyString(“panelMidiThruH2DChannelize”,”1″)
                            panel:setPropertyString(“panelMidiThruD2HChannelize”,”1″)
                            panel:setPropertyString(“panelMidiThruH2D”,”1″)
                            It does not seem he used:
                            panel:setPropertyInt(“panelMidiPauseOut”,1)
                            Will look some further.

                            • This reply was modified 8 years, 7 months ago by Possemo.
                            in reply to: setModulatorValue is sending to MIDI-Out #58173
                            Possemo
                            Participant
                              • Topics: 14
                              • Replies: 638
                              • Total: 652
                              • ★★★

                              I was not into Ctrlr for some time. I changed the uiCombos to uiListbox’es but I am still interested in a solution for uiCombos. May I ask – how do you set the switch “No MIDI output from panel” with LUA?

                              in reply to: JX-Programmer MKS-70 adaptation #57481
                              Possemo
                              Participant
                                • Topics: 14
                                • Replies: 638
                                • Total: 652
                                • ★★★

                                @quadraspleen: that’s what I think too, but I did not want to speak for someone else.


                                @midiquestions
                                : I really didn’t wanted to be offensive. You got me wrong there. In short I just wanted to say: take it, change it or leave it. Is this offensive again? Maybe I better stop posting :).

                                in reply to: JX-Programmer MKS-70 adaptation #57437
                                Possemo
                                Participant
                                  • Topics: 14
                                  • Replies: 638
                                  • Total: 652
                                  • ★★★

                                  This is Opuswerks editor, so he may do with it what he wants. If he thinks that it is still in beta stage and don’t want to list it in the “panels” page I think this is legit. You could actually contribute something and ask him if it is ok to put it in the panels page yourself. Every registered user can make a panels-page. But I’m afraid this will take longer than 15 minutes 😉

                                  in reply to: JX-Programmer MKS-70 adaptation #57395
                                  Possemo
                                  Participant
                                    • Topics: 14
                                    • Replies: 638
                                    • Total: 652
                                    • ★★★

                                    Hi midiquestions. Yes, the 4.x is quite a heavy mod. With v3.09 you should be able to use Opuswerks’ editor (you find it in this thread). Maybe some day I will make a v3.x Version of my editor but at the moment I am busy with a lot of other things. Opuswerk’s editor has almost all features but Patch-Save-to-disk/Load-from-disk.

                                    in reply to: setModulatorValue is sending to MIDI-Out #50552
                                    Possemo
                                    Participant
                                      • Topics: 14
                                      • Replies: 638
                                      • Total: 652
                                      • ★★★

                                      Thanks dasfaker,

                                      I just wantet to add that every uiCombo has the bug, as you say – the ones that do not send data receive the same value as they already have (first switch: false). “No MIDI output from panel” is a workaround for this – thanks. I am thinking about changing a few uiCombos to uiListBox. I like the ListBox as it shows you all possible settings of a prameter at once. But yea of course I needs more space on the screen.

                                      in reply to: JX-Programmer MKS-70 adaptation #50417
                                      Possemo
                                      Participant
                                        • Topics: 14
                                        • Replies: 638
                                        • Total: 652
                                        • ★★★

                                        Hi,
                                        current state of the “SuperJX OS4.x Editor” is BETA2 (you can download it in the panel downloads). This will be my last post in this thread about v4.x Vecoven upgraded SuperJX’es. I would just like to thank opuswerk for his panel “PG800c”. It helped me a lot to get into the SuperJX-Sysex and how you implement it in Ctrlr. As a tribute I put somewhere in the description “based on Opuswerk’s PG800c”.

                                        in reply to: JX-Programmer MKS-70 adaptation #48572
                                        Possemo
                                        Participant
                                          • Topics: 14
                                          • Replies: 638
                                          • Total: 652
                                          • ★★★

                                          Hi opusewerk,

                                          I’m glad you like the look of my panel. As you can see, the graphic envelopes do not need much code when they are not draggable by mouse. Yeah, there is still a lot of work to do on my panel.

                                          in reply to: JX-Programmer MKS-70 adaptation #48467
                                          Possemo
                                          Participant
                                            • Topics: 14
                                            • Replies: 638
                                            • Total: 652
                                            • ★★★

                                            Hi,
                                            my panel for the [MKS-70 VecovenOS v4.0] is nowhere near finished but if someone is intested in the actual state I’d post it here. I decided to make the graphic envelopes not editable by draging the mouse. Just moving the knobs below the envelopes is much easier code and for me it cuts it. There is still a lot to be done. BendRange and KeyMode do not work but I will fix this in the next days. I would like to add some sort of librarian to handle a Bulk-Dump of the MKS-70 but this looks rather complex. Before I’l give a try on this I will add the code from opuswerk to be able to load a patch from the MKS-70.

                                            You can already see the amazing amount of parameters the MKS-70 gets with the VecovenOS v4.0. I made two tabs for the upper and lover tone because of that.

                                            Cheers

                                            Attachments:
                                            You must be logged in to view attached files.
                                          Viewing 20 posts - 601 through 620 (of 638 total)
                                          Ctrlr