Skip navigation
486 Views 12 Replies Latest reply: Jul 15, 2012 3:30 AM by jorisgriffioen RSS
MarkCline Just Startin' 36 posts since
Jan 26, 2007
Currently Being Moderated

Jul 10, 2012 6:52 AM

HD Edit for Android Tablet

I would love to be able to run HD Edit on my Android Tablet or smart phone.  I guess I'm just spoiled to the GUI, but I don't want to carry my laptop everywhere.

 

Any plans?

 

Thanks!

  • TheRealZap Expert Line 6 User 11,829 posts since
    Dec 22, 2006
    Currently Being Moderated
    Jul 10, 2012 7:15 AM (in response to MarkCline)
    Re: HD Edit for Android Tablet

    completely impossible... no android/linux based drivers... and a standard usb port is uncommon...

    not to mention the edit program itself would need to be ported...

    i'd expect you'd see it on apple devices long before android devices... because apple devices are standardized at least....

    if you don't see it for apple devices.. its far far far away if ever from being on an android.

    • snuffels9 Just Startin' 13 posts since
      Mar 9, 2011
      Currently Being Moderated
      Jul 11, 2012 9:57 AM (in response to TheRealZap)
      Re: HD Edit for Android Tablet

      Making a Android version of HD Edit is no problem at all, if you have Andorid 3.x or higher. It comes with a USB API. There is no need for a driver. You can simply talk to the USB Endpoint. I have already done something similar using libusb on my PC. HD Edit uses SysEx commands to communicate with the POD, but simple things like changing the presets/knob positions work with standard MIDI PC/CC messages. If Line6 would provide any documention for the SysEx command, doing it would be a trivial job, but since there is no help from Line6 you would have to reverese engineer all the SysEx stuff from the existing HD Edit version.

       

      Here is my simple and still very ugly ;-) test code (this has the appropriate Vendor/Device ids for a POD HD 400):

       

      public class PODMidiTest {
          public static void main(String[] args) {
              byte[] data = new byte[] {(byte) 0xC0, 0x04};
              byte[] inData = new byte[8];

              Device dev = USB.getDevice((short) 0xe41, (short) 0x5058);
              try {
                  dev.open(1, 0, 5);
                  int res = dev.writeInterrupt(0x03, data, data.length, 2000, false);
                  System.out.println(res);
                  res = dev.readInterrupt(0x84, inData, 8, 2000, false);
                  System.out.println(res);
                  System.out.println(Arrays.toString(inData));
                  dev.close();
              } catch (USBException e) {
                  e.printStackTrace();
              }
          }
      }

      • jimsreynolds Power User 2,227 posts since
        Jun 27, 43450
        Currently Being Moderated
        Jul 11, 2012 11:44 AM (in response to snuffels9)
        Re: HD Edit for Android Tablet

        Colour me impressed !   (though I am not sure Line 6 would encourage it !!)

         

        Certainly, the cheapo android tablet I just bought the missus has two USB ports, unlike the iPad, so I have to agree:  probably an easier development platform.  The droid platform is pretty slick now. 

         

        Meambobbo was campaigning for an open source model for the Line 6 Interfaces a while back and I guess this another argument in favour.

      • TheRealZap Expert Line 6 User 11,829 posts since
        Dec 22, 2006
        Currently Being Moderated
        Jul 11, 2012 1:41 PM (in response to snuffels9)
        Re: HD Edit for Android Tablet

        that's all good and great.... but you're missing alot of the real-time implementation in the L6 ASIO drivers...

        which of course adhere to the ASIO standard... which in turn is not open source... so unlikely many dev's will bother....

        and then there's the issue of porting the software...

        have at it... i'll believe it when i see it

        in theory of course... anything is possible... in reality... well... by the time you finish we'll be wanting the editor for the SuperHDsupreme pod to work....

      • jorisgriffioen Just Startin' 2 posts since
        Sep 13, 2011
        Currently Being Moderated
        Jul 15, 2012 3:30 AM (in response to snuffels9)
        Re: HD Edit for Android Tablet

        Awesome, hey I'm an interaction designer (and coder), maybe we can get something started here?

        I'd love to design and build an interface for this, if you could handle the back end we'd have a product!

         

        Btw.   "if i could make themn do anything... publishing this would not be at the top of the list."

         

        FYI, this documentation is a document they already have laying around. It's a matter of removing any vulnerable info and uploading it... it's a 5-minute job.

        There is litteraly *no* argument not to publish it. Competitors gain nothing from knowing the Sysex info, only your customers will because you open it up for third party enhancement. (basically, the updating and development that Line6 should be doing..)

  • Duker63 Just Startin' 52 posts since
    Jun 15, 2012
    Currently Being Moderated
    Jul 11, 2012 2:39 PM (in response to MarkCline)
    Re: HD Edit for Android Tablet

    dont see the point

     

    Imagine doing a show and having a call come thru the PA

    • jimsreynolds Power User 2,227 posts since
      Jun 27, 43450
      Currently Being Moderated
      Jul 12, 2012 4:15 AM (in response to Duker63)
      Re: HD Edit for Android Tablet

       

      It is less about audio and performance and more about convenience of editing. 

       

      I don't think my world would end if I could not edit presets on the Pod with my wife's tablet (pried from her cold, dead hand btw)  but It might enhance my life in some small way if I could tweak on the droid.  I am more likely to tote a tablet around than a laptop.  

       

      Other people have aspirations towards using a Tablet in their performance.  

  • Crusty_Old_Rocker Expert Line 6 User 3,096 posts since
    Jan 24, 2007
    Currently Being Moderated
    Jul 12, 2012 5:13 AM (in response to MarkCline)
    Re: HD Edit for Android Tablet

    I wanted to use something tablet style for running all my Line 6 software so I bought an Asus EP121. It's great!

     

    Cheers,

     

    Crusty

More Like This

  • Retrieving data ...

Bookmarked By (0)

Legend

  • Correct Answers - 5 points
  • Helpful Answers - 3 points