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

    Madeline

    @Madeline

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Madeline Unfollow Follow

    Latest posts made by Madeline

    • RE: MMM-SynologySurveillance can get enumerate camera info, but on MM page just shows UNDEFINED

      Well I have some progress, I now get three boxes on the MagicMirror page with the camera icon in them but no data.

      here’s my updated config.js snippet…

      {
              module: "MMM-SynologySurveillance",
              position: "middle_center",
              config: {
                  debug: true,
                  ds: [
                        {
                          protocol: "https",
                          host: "x.x.x.x",
                          port: "xxxx",
                          user: "xxxx",
                          password: "xxxxxx",
                          cams: [ 5, 7, 14],
                         },                
                      ],
                   },
              },
      

      Someone suggested updating the update interval, but I’ve tried several intervals mostly focusing on on minimumTimeBetweenRefreshs (which is spelled wrong, but that’s what’s in the docs on GitHub, I also tried spelling it correctly, no change. Still getting the periodic refreshes in the logs like I was before, so it’s still logging in and getting something.

      posted in Utilities
      M
      Madeline
    • MMM-SynologySurveillance can get enumerate camera info, but on MM page just shows UNDEFINED

      Re: MMM-SynologySurveillance

      Relatively new to MM, running latest software (just set up yesterday and today on Rasp Pi 4, full install. Have many third party modules working properly and love it. Having a problem with MMM-SynologySurveillance. Turned debug on and it seems to be able to log in and enumerate all the cameras, (see log below) and I even see it periodically query with the full url and the keys for each camera. No errors that I can see. however on the MM page it’s the only module that shows “UNDEFINED” no matter which zone I put it in. Ideas?

      [2025-07-13 14:45:32.371] [LOG] MMM-SynologySurveillanceNew infos of DiskStation with idx: 0
      0|mm | [2025-07-13 14:45:32.371] [LOG] {
      0|mm | “camIds”: [
      0|mm | 5,
      0|mm | 7,
      0|mm | 14,
      0|mm | 32,
      0|mm | 34,
      0|mm | 35
      0|mm | ],
      0|mm | “camNameIdMapping”: {
      0|mm | “Back Doors”: 5,
      0|mm | “Pool Cam”: 7,
      0|mm | “Indoor Kitchen”: 14,
      0|mm | “Side Door”: 32,
      0|mm | “Indoor TV Room”: 34,
      0|mm | “Indoor Living Room”: 35
      0|mm | },
      0|mm | “camIdNameMapping”: {
      0|mm | “5”: “Back Doors”,
      0|mm | “7”: “Pool Cam”,
      0|mm | “14”: “Indoor Kitchen”,
      0|mm | “32”: “Side Door”,
      0|mm | “34”: “Indoor TV Room”,
      0|mm | “35”: “Indoor Living Room”
      0|mm | },

      posted in Utilities
      M
      Madeline