MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. bobbob601
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 44
    • Best 6
    • Controversial 0
    • Groups 0

    bobbob601

    @bobbob601

    9
    Reputation
    1501
    Profile views
    44
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bobbob601 Unfollow Follow

    Best posts made by bobbob601

    • RE: multiple module instances overwrites itself values

      most of modules don’t support multi-instance because the way magicmirror is done, they share node_helper and thus, both instances received all notifications so the last notification will overwrite both modules.

      either you duplicate the module (and edit the source code a little bit) or the module itself but be rewrittent to manage multi-instances.

      posted in Development
      B
      bobbob601
    • MMM-Transilien (Paris - France)

      As requested by several people here is a module to monitor in real time trains “Transilien” which are not managed by my first module MMM-Ratp

      Screenshot:

      alt text

      Download

      posted in Transport
      B
      bobbob601
    • Forum email's confirmation impossible

      Hi,

      I am (normally) not stupid but I cannot success to confirm my email. It is just a standard email (hotmail), I NEVER receive the confirmation email, even if I ask to receive it again.

      More weird, if in my profile I change my email to a jetable.org email (proxy) which redirect to my hotmail email, then I receive the confirmation. But then I try to put back my real email and I need to confirm again but I don’t receive the confirmation email.

      I try it twice. The final email is the same, it is NOT in junk folder. If it comes directly from the forum to hotmail, I don’t receive it.
      Am I the only one ?

      just curious

      posted in Forum
      B
      bobbob601
    • RE: Forum email's confirmation impossible

      If you need a beta tester to fix this issue, don’t hesitate to ping me 🙂

      posted in Forum
      B
      bobbob601
    • RE: Transit Departure module. How to get started?

      edit the files and in a browser, you open the URL to MM (localhost:8080 in my case) and you refresh whenever.

      BTW, you don’t have to stop it, it seems that running the command again (pm2 start mm) does a “restart”

      posted in Development
      B
      bobbob601

    Latest posts made by bobbob601

    • RE: Not connected to the internet module

      Hi Pilster59,

      I’m sorry but I’m curious. you say that you want a “simple” solution but you ask to redevelop the whole UI of the underlying OS to manage wireless connections. why don’t you want to do alt-tab and use the wireless GUI ? at least, it is less bug-prone and will likely manage more type of wireless connexion parameters (WPA2, PSK, etc.)

      posted in Hardware
      B
      bobbob601
    • RE: MMM-Ratp (transit all around Paris (France))

      I just rewrote the module, with a new standard UI and the module should now perfectly work as multi-instance (@Ob018 )

      posted in Transport
      B
      bobbob601
    • RE: MMM-Transilien (Paris - France)

      Just got my credentials (took two weeks)

      posted in Transport
      B
      bobbob601
    • RE: Making Frame/Case for Magic Mirror
       I simply “sandwiched” it between the monitor and the frame. 2 “L” brackets hold everything in place. Here is my explanation of how I built the box and frame:
      

      Same thing here. the only way to be able to unbuilt it if needed (and it was needed several times in my case)

      posted in Hardware
      B
      bobbob601
    • RE: multiple module instances overwrites itself values

      same than mine 🙂 coded exactly like you while I was on the plane I just pushed but not tested (sadly I pushed it on my master :-/)
      https://github.com/lgmorand/MMM-Ratp

      socketNotificationReceived: function(notification, payload) {
              Log.info("Notif:" + notification);
              if (notification === "TRANSPORTS") {
                  if (this.config.debugging) {
                      Log.info("Transports received");
                      Log.info(payload.lineInfo);
                      Log.info(payload.transports);
                  }
      
                  if(this.config.uniqueID == payload.uniqueID) // just in case of multi instances
                  {
                      this.transports = payload.transports;
                      this.lineInfo = payload.lineInfo;
                      this.loaded = true;
                      this.updateDom(this.config.animationSpeed);
                  }
      }
      

      At least, thanks to you, I know it can work 🙂

      my idea to improve it was to auto-generate a ID for the module, not in the config, but generated by the Magic Mirror on loading. it should be easy to implement. Once this ID generated, it is accessible from the node_helper and the module.js. this way, no need to declare a uniqueID in the config

      posted in Development
      B
      bobbob601
    • RE: multiple module instances overwrites itself values

      @BenRoe nope. And I tried several months ago without success. But I’m trying it now (thought I’ll not be able to test before the next week). If it works, it could be easily implemented everywhere and furthermore, I have an idea to simplify it a little bit by improving Magic Mirror itself.

      I’ll come back here after my tests

      posted in Development
      B
      bobbob601
    • RE: multiple module instances overwrites itself values

      most of modules don’t support multi-instance because the way magicmirror is done, they share node_helper and thus, both instances received all notifications so the last notification will overwrite both modules.

      either you duplicate the module (and edit the source code a little bit) or the module itself but be rewrittent to manage multi-instances.

      posted in Development
      B
      bobbob601
    • RE: SpaceX launch schedule

      you’ll need an API or something to read the info from. You should provide a technical source for all this information (the HTML page is not ;-)) and maybe someone will do the module for you (but honestly it’s kind a really personal need for you :))

      posted in Requests
      B
      bobbob601
    • RE: Sparkfun ZX Sensor Gesture Module

      the video is great 🙂 should definitely put it on the readme. People will love your module 😉

      posted in Utilities
      B
      bobbob601
    • RE: Sparkfun ZX Sensor Gesture Module

      Hi @muharremtac

      could you fullfill the description of the readme? the config talk of images, but I don’t see how it works ? I was expecting a gesture commands or something. is it just a caroussel of images automated by gestures ? if so, you should say what we must expect with this module because it is not very clear (at least for me :))

      posted in Utilities
      B
      bobbob601