• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Trying to write my own Module...

Scheduled Pinned Locked Moved Development
31 Posts 5 Posters 18.0k Views 5 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    nbrenn @mochman
    last edited by nbrenn Dec 22, 2016, 11:49 PM Dec 22, 2016, 10:51 PM

    @mochman
    Thanks for the link to the markdown page! My OP is edited accordingly. I do understand that I’m missing necessary code in order to make it function. I’m just not really sure what.

    I would like to print the <name> and <watts> if possible. The XML returned has a lot more data, but for the sake of this post, I cut it down to just include the first three items. I would like to print all three.

    1 Reply Last reply Reply Quote 0
    • M Offline
      mochman Module Developer
      last edited by mochman Dec 23, 2016, 2:51 PM Dec 23, 2016, 2:29 PM

      Your code seems to abruptly end in the middle of the getDom() function, but from what I see, it looks like you are sending the URL to a node_helper.js that I assume will get the data you want.

      My recommendation would be to look at this page and see how to parse the XML to take out what you want. You then can use this data to create a simple table to display each <name> and <watts> in the getDom() function. I don’t think you’ll need a node_helper.js to do this though. You can probably just do it in the main .js file. Unless you’re running into a Access-Control-Allow-Origin error. Then you can get around it by using node_helper.js

      Another way people have done this has been described here.

      N 1 Reply Last reply Dec 23, 2016, 8:07 PM Reply Quote 0
      • N Offline
        nbrenn @mochman
        last edited by nbrenn Dec 23, 2016, 8:08 PM Dec 23, 2016, 8:07 PM

        @mochman
        Thanks for the response and the examples. Are some of the XML methods in the tutorial you linked to, often used in Mirror modules?

        I wasn’t planning on using a node_helper.js and my code does abruptly end in the middle of the getDOM(). I got stuck when trying to find out how to extract specifics from the XML, like <name> and <watts>.

        Do you know of any other good module examples that would have similar XML structure, where specific objects were extracted from?

        S 1 Reply Last reply Dec 23, 2016, 8:52 PM Reply Quote 0
        • S Offline
          strawberry 3.141 Project Sponsor Module Developer @nbrenn
          last edited by Dec 23, 2016, 8:52 PM

          @nbrenn

          Assuming xml is the xml file you get as response from the server

          var channels = xml.getElementsByTagName("channel");
          
          for(var i = 0; i < channels.length; i++){
            for(var n = 0; n < channels[i].children.length; n++){
              if(channels[i].children[n].tagName === "name" || channels[i].children[n].tagName === "watts"){
                console.log(channels[i].children[n].textContent);
              }
            }
          }
          

          will ouput

          "Main Power Main Panel"
          "-9"
          "West Solar 1"
          "-165"
          "West Solar 2"
          "-143"
          "Both Bathroom Outlets"
          "0"
          "1st Floor Lights"
          "0"
          

          Please create a github issue if you need help, so I can keep track

          N 1 Reply Last reply Dec 23, 2016, 10:52 PM Reply Quote 0
          • O Offline
            ooom416354
            last edited by Dec 23, 2016, 10:28 PM

            I am kind of in the same boat. I actually have an old JS file which would return data in JSON format using the MTA API for the MM1. This allowed me to see if my train was delayed or not before leaving the house. I am trying to figure out an easy way to port to over to the new mirror but I am not at all a JavaScript programmer. If anyone would like to have a look at the current code for the MM1 and maybe try to port it over it might help some folks who live in the NYC area. Or if anyone knows if there is a current module which takes JSON results and displays them on the screen I can try to mock that up to integrate this. Thanks!

            1 Reply Last reply Reply Quote 0
            • N Offline
              nbrenn @strawberry 3.141
              last edited by nbrenn Dec 23, 2016, 11:18 PM Dec 23, 2016, 10:52 PM

              @strawberry-3.141 Thanks for the snippet! I have a better idea of how to extract the data from the XML with your example.

              If I want to simply output what you have provided in your post, would I need to simply put your snippet into my getDom() function and add the .name to my .css file (similar to how I have the .watts)?

              So I know that’s probably incorrect, but I just tried it and an error returned:
              Cannot read property getElementsByClassName of null. I think that I am having trouble understanding how to create the div object for which to add in the data.

              C S 2 Replies Last reply Dec 24, 2016, 2:49 AM Reply Quote 0
              • C Offline
                cowboysdude Module Developer @nbrenn
                last edited by cowboysdude Dec 24, 2016, 2:50 AM Dec 24, 2016, 2:49 AM

                @nbrenn post what you’ve rewritten so they can better understand where your error may be and what I do [whcn I added humidity to the stock weather app] was to look at other modules and pick it apart to see how they were using div and such for styling to better get an understanding how it fit together. These guys are awesome, they like to help!

                Actually posting what you have now would help me too! :) I’m trying to create something myself.

                1 Reply Last reply Reply Quote 0
                • S Offline
                  strawberry 3.141 Project Sponsor Module Developer @nbrenn
                  last edited by strawberry 3.141 Dec 24, 2016, 10:05 AM Dec 24, 2016, 10:05 AM

                  @nbrenn I’m assuming that you saved your server response into this.xml

                  getDom: function(){
                    var wrapper = document.createElement("div");
                  
                    if(this.xml){
                      var channels = this.xml.getElementsByTagName("channel");
                      for(var i = 0; i < channels.length; i++){
                        for(var n = 0; n < channels[i].children.length; n++){
                          if(channels[i].children[n].tagName === "name" || channels[i].children[n].tagName === "watts"){
                            var element = document.createElement("div");
                            element.classList.add(channels[i].children[n].tagName);
                            element.innerHTML = channels[i].children[n].textContent;
                            wrapper.appendChild(element);
                          }
                        }
                      }
                    } else {
                      wrapper.innerHTML = "NO DATA";
                    }
                    return wrapper;
                  }
                  

                  this would create two div container for every channel one for the name and the other for watts. each of them would have the css class .name or .watts

                  Please create a github issue if you need help, so I can keep track

                  1 Reply Last reply Reply Quote 1
                  • N Offline
                    nbrenn
                    last edited by Dec 24, 2016, 5:31 PM

                    Thanks for the great support.

                    I currently have no errors with what you’ve helped provide me with. However, it displays the else condition, and NO DATA.

                    Right now, my MMM-EMonitor.js looks like the following:

                    Module.register ("MMM-EMonitor", {
                        
                        //default module config.
                        defaults: {
                            // Insert defaults here
                            interval: 900000 // Every 15 mins
                        },
                        
                        getStyles: function() {
                            return ["MMM-EMonitor.css"];
                        },
                        
                        // Define the start sequence
                        start: function() {
                            Log.log("Starting module: " + this.name);
                            
                            //this.securitykey = REDACTED;
                            this.url = 'https://api.emonitor.us/location/getCurrentData?security_key=REDACTED';
                            this.getCurrentData(this);
                        },
                        
                       getCurrentData: function(that) {
                           that.sendSocketNotification('GET-CURRENT-DATA', that.url);
                           setTimeout(that.getCurrentData, that.config.interval, that);
                        },
                        
                    
                       getDom: function(){
                     	 var wrapper = document.createElement("div");
                    
                      	if(this.xml){
                       	 var channels = this.xml.getElementsByTagName("channel");
                       	 for(var i = 0; i < channels.length; i++){
                        	   for(var n = 0; n < channels[i].children.length; n++){
                           		if(channels[i].children[n].tagName === "name" || channels[i].children[n].tagName === "watts"){
                              	var element = document.createElement("div");
                              	element.classList.add(channels[i].children[n].tagName);
                              	element.innerHTML = channels[i].children[n].textContent;
                              	wrapper.appendChild(element);
                            	}
                          	}
                        	}
                      	} else {
                        		wrapper.innerHTML = "NO DATA";
                      	}
                      	return wrapper;
                    }
                    });
                    

                    and my css looks like the following:

                    .MMM-EMonitor .centered {
                        text-align: center;
                    }
                    

                    Like I mentioned, the NO DATA is showing up. The security key is working, and returns the XML which I have in my original post.

                    1 Reply Last reply Reply Quote 0
                    • M Offline
                      mochman Module Developer
                      last edited by Dec 24, 2016, 7:06 PM

                      You don’t have this.xml defined anywhere in your script. If you look at @strawberry-3-141’s post, it says:

                      I’m assuming that you saved your server response into this.xml

                      You need to create a function that uses the URL and saves that data in a variable called xml. Since your program never does that, this.xml isn’t defined so your if/else always goes to “NO DATA”.

                      Why do you have

                      getCurrentData: function(that) {
                             that.sendSocketNotification('GET-CURRENT-DATA', that.url);
                             setTimeout(that.getCurrentData, that.config.interval, that);
                          },
                      

                      in your program? Did you just see it in another persons code? This code snippet sends your URL to node_helper.js. Are you using that node_helper to pull the XML data from the website? If so, you’re going to need a socketNotificationReceived function to get the data and put it into the xml variable.

                      The modules documentation shows you some examples of that.

                      1 Reply Last reply Reply Quote 1
                      • 1
                      • 2
                      • 3
                      • 4
                      • 1 / 4
                      1 / 4
                      • First post
                        7/31
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy