Replies: 4 comments 25 replies
-
I also want to add my thanks to @rafamj who's "elecmidi" C header I used (and documented how with Dart in this article) as well as porting some of the encoding/decoding functions in my Dart code. |
Beta Was this translation helpful? Give feedback.
-
I haven't tried yet, but if I can I'll add CC messages for every physical control. Maybe even have the pads send different messages depending on which mode is selected. |
Beta Was this translation helpful? Give feedback.
-
@bangcorrupt I finally had a chance to record a quick demo (well sorry its actually a bit rambling) of the current state of my "companion app" for the E2 https://www.youtube.com/watch?v=-vGEu_1CHNk Again huge thanks for implementing the full controls Midi NRPN messages in Hacktribe! without that I don't think my goal of controlling the app completely from the E2 would ever be possible. |
Beta Was this translation helpful? Give feedback.
-
In the next update, NRPN map will change slightly. Everything will shift right by one byte, so what is currently: [ NRPN-MSB, NRPN-LSB, DATA-MSB ] will become: [ NRPN-LSB, DATA-MSB, DATA-LSB ] with NRPN-MSB used to select different modes (like fx editing). Only the CC numbers will change, the values remain the same. For panel control output, NRPN-MSB == 0. |
Beta Was this translation helpful? Give feedback.
-
So I'm working on a "tracker style" companion app for the E2 for editing patterns and instrument patches.
Its very early stages at the moment, but one of my goals is for the app to be controlled (as in user input) from the E2 itself.
At the moment per the factory firmware midi implementation I get midi messages for most of the "panel controls" so I'm able to use the pads for selecting parts as well steps, but there are no messages for the "step buttons" (1,2,3,4), Shift, the arrow buttons or the Part-arrow buttons. Ideally would also be great to have access to all those and the OSC dial (because its nicely stepped) and the menu/enter, exit & write buttons 🙂
But just having access to the steps, arrows and shift would make it so much easier for me to build a great set of controls for my apps.
@bangcorrupt I'm hoping this is perhaps something that is not too difficult to add with the current hacktribe firmware, as you have already done intercepting receiving midi messages for the purpose of poking/writing ram addresses?
Beta Was this translation helpful? Give feedback.
All reactions