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.

    Electricity Bill Module Development

    Scheduled Pinned Locked Moved Utilities
    19 Posts 3 Posters 3.7k Views 3 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.
    • S Offline
      SopaMaruchan @sdetweil
      last edited by

      @sdetweil it’s indeed pointing to my module. Here’s the output: 55021cd9-1c10-46c3-8a9d-5de1e97674a1-image.png
      and the huge LOG ends with the last 2 arguments: null & 2 e2503443-14c0-45ad-9614-37a9392997c0-image.png

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @SopaMaruchan
        last edited by

        @SopaMaruchan

        problem is that the sockets are not connected at start time. so the sendSocketNotification is a no-op.

        u need wait til the module sends a socket message

        the module config is not visible to the node_helper, so the module has to send it over/down…

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • mumblebajM Offline
          mumblebaj Module Developer @SopaMaruchan
          last edited by

          @SopaMaruchan Maybe the below example would help or serve as a guide to see if you may have the send call in the wrong place.

          module.exports = NodeHelper.create ({
              start: function() {
                  console.log('Starting node_helper for module: ' + this.name)
              },
          
              getLights: async function(payload) {
                  var url = "http://" + payload.bridgeip + "/api/" + payload.userid + "/" + payload.lightsOrGroups;
                  
                  var response = await fetch(url)
                  if (!response.status == 200) {
                      console.error(`Error retrieving data: ${response.statusCode} ${response.statusText}`)
                      return;
                  }
          
                  var result = await response.json()
                  
                  this.sendSocketNotification("lightsorgroups", result)
              },````

          Check out my modules at: https://github.com/mumblebaj?tab=repositories
          Check my blog-post: https://mumblebaj.xyz/

          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @mumblebaj
            last edited by

            @mumblebaj he is calling from start:

            but sockets not setup yet.

            he really needs to wait til the module sends the 1st notification down ( what we use to send config info from module to helper)

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            mumblebajM 1 Reply Last reply Reply Quote 0
            • mumblebajM Offline
              mumblebaj Module Developer @sdetweil
              last edited by

              @sdetweil Ah, hopefully he caught that and changes it.

              Check out my modules at: https://github.com/mumblebaj?tab=repositories
              Check my blog-post: https://mumblebaj.xyz/

              1 Reply Last reply Reply Quote 0
              • 1
              • 2
              • 1 / 2
              • First post
                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