MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. yours.mukul
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Y
    Offline
    • Profile
    • Following 0
    • Followers 1
    • Topics 27
    • Posts 59
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Stock Module Problem

      @wotohr Can you please give me some solution, I actually require the stock module. If anyone can give me google finance url for json data, then I shall be very much thankful

      posted in Development
      Y
      yours.mukul
    • RE: Except a module in getModules()

      @strawberry-3.141 Well your code didn’t hide any of modules

      posted in Troubleshooting
      Y
      yours.mukul
    • RE: Except a module in getModules()

      @strawberry-3.141 how to iterate over the modules array ?
      I want to show/hide all modules except the “helloworld”.

      posted in Troubleshooting
      Y
      yours.mukul
    • RE: Stock Module Problem

      @wotohr The modules uses
      http://finance.google.com/finance/info?client=ig&q=
      to get the json data of stock, where as google has changed the url and now the data is not able to be fetched. That’s the main reason, if you can find any other way to get the stock data in json format then we can run it again

      posted in Development
      Y
      yours.mukul
    • RE: Except a module in getModules()

      @strawberry-3.141

      socketNotificationReceived: function(notification, payload) {
                      var i,modules =  MM.getModules();
          		if (notification === "BUTTON_PRESSED"){
      			this.sendNotification(notification, payload);   
                              for(i=0; imodules.length; i+=1){
                                     if(modules[i].hidden == true){
                                         modules[i].show(0);
                                    }
                                     else if(modules[i].hidden == false)
                                          {
                                           modules[i].hide(0);
                                                       }                           
                }
      		}
      
      

      I want to show/hide all the modules except the **hello world ** module. Please help me out with that.

      Note: I was unable to write less than sign in the for loop while writing this reply, I think its a bug, in this forum, whenever I write less than, all the text after it is is ignored.

      posted in Troubleshooting
      Y
      yours.mukul
    • RE: Except a module in getModules()

      I have a button module, which throws notification when a button is pressed. What I want is, it blacks out the whole screen except “Hello World”. So I will be using

      **var i,modules = MM.getModule();
      for(i=0;i

      posted in Troubleshooting
      Y
      yours.mukul
    • Except a module in getModules()

      var i,modules = MM.getModules().exceptModule(helloworld);

      The above code throws error, while the below doesn’t work
      var i,modules = MM.getModules().exceptModule(‘helloworld’);

      posted in Troubleshooting
      Y
      yours.mukul
    • RE: Push Notification

      @j.e.f.f Thanx for the reply. Well I need to show up my phone’s notification on my magic mirror. Just like the above modules do. I feel its cool to have a phone notification connected to my mirror, so I do not need to look up my phone.
      Is there any other way to achieve it ?

      posted in Development
      Y
      yours.mukul
    • Push Notification

      I installed Push Notification Modules, but it never shows up any notification. I tried posting issue on github, but the author didn’t respond.

      posted in Development
      Y
      yours.mukul
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 5 / 6