[solved] MiniDisplayPlugin: Support for latest iMON VFD/LCD drivers (1 Viewer)

Status
Not open for further replies.

Stéphane Lenclud

Retired Team Member
  • Premium Supporter
  • April 29, 2013
    2,576
    1,294
    Home Country
    Germany Germany

    Attachments

    • MiniDisplayLibrary-for-iMON-VFD-and-LCD.patch
      62.2 KB

    azzuro

    Test Group
  • Team MediaPortal
  • May 10, 2007
    9,948
    5,617
    France - IDF
    Home Country
    France France
    are your sure of this ?
    Code:
          list.Add(new ShuttlePF27());
          if (this.ExtensiveLogging)
          {
            Log.Info("MiniDisplay.Settings.LoadDrivers(): Loading iMON VFD...");
          }
          list.Add(new ImonVfd());
          if (this.ExtensiveLogging)
          {
            Log.Info("MiniDisplay.Settings.LoadDrivers(): Loading iMON LCD...");
          }
          list.Add(new ImonLcd());
          if (this.ExtensiveLogging)
          {
            Log.Info("MiniDisplay.Settings.LoadDrivers(): Loading Debug Display...");
          }
          list.Add(new DebugForm());

    Code:
          list.Add(new ShuttlePF27());
          if (this.ExtensiveLogging)
          {
            Log.Info("MiniDisplay.Settings.LoadDrivers(): Loading Debug Display...");
          }
          list.Add(new ImonVfd());
          if (this.ExtensiveLogging)
          {
            Log.Info("MiniDisplay.Settings.LoadDrivers(): Loading iMON VFD...");
          }
          list.Add(new ImonLcd());
          if (this.ExtensiveLogging)
          {
            Log.Info("MiniDisplay.Settings.LoadDrivers(): Loading iMON LCD...");
          }
          list.Add(new DebugForm());
    invertion with last one ?
     

    Stéphane Lenclud

    Retired Team Member
  • Premium Supporter
  • April 29, 2013
    2,576
    1,294
    Home Country
    Germany Germany
    are your sure of this ?
    Yes this looks correct. It logs then adds the driver.

    what include the nuget package ?
    A couple of DLLs to interface with the display. One is closed source from SoundGraph.
    The other is just a C++ open source wrapper that I should add to GitHub as a separate project I guess.
     
    Last edited:

    azzuro

    Test Group
  • Team MediaPortal
  • May 10, 2007
    9,948
    5,617
    France - IDF
    Home Country
    France France
    i think your patch is not up to date, with nicsergio change ;)

    off topic :
    if you can do, the same think for remote api, on IRSS side. and maybe internal MP remote.
     

    Stéphane Lenclud

    Retired Team Member
  • Premium Supporter
  • April 29, 2013
    2,576
    1,294
    Home Country
    Germany Germany
    i think your patch is not up to date, with nicsergio change ;)

    You are talking about the changes for the REC icon. That's correct they are not in there this will come in later.
    That first step is just about contributing the changes as they were before I change anything.
    The goal is to get at least basic support for iMON LCD/VFD with the next MePo release.

    Later I'll look into adding new features and fixing bugs.

    if you can do, the same think for remote api, on IRSS side. and maybe internal MP remote.

    I'm not sure what you are talking about so feel free to point me in the right direction.
    Though I'm already stretched pretty thin with EQ visualizer feature so I probably won't have time for anything else ATM.

    What does it take to get write access to the GIT repository?
     

    regeszter

    Retired Team Member
  • Premium Supporter
  • October 29, 2005
    5,335
    4,954
    Home Country
    Hungary Hungary
    Anyone can fork a GIT branch and send a pull request if finished the work.
     
    Status
    Not open for further replies.

    Users who are viewing this thread

    Top Bottom