• 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.

Quick Syntax Error

Scheduled Pinned Locked Moved Unsolved Troubleshooting
20 Posts 5 Posters 3.8k 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.
  • S Offline
    smartsoldier
    last edited by smartsoldier Aug 5, 2018, 1:43 PM Aug 5, 2018, 1:41 PM

    Can someone take a look at the new config setup for MMM-DropboxWallpaper and tell me where the syntax is wrong:

    {
      module: 'MMM-DropboxWallpaper',
      position: 'fullscreen_below', // fullscreen_below is the best position.
      classes: "default everyone", // when you use MMM-ProfileSwitcher.
      config: {
        refreshInterval: 1000*60,
        search: [".jpg", ".png", ".gif"], // Or you can find target files like "PARTIAL FILENAME". (wildcard or regexp not supported)
        directory: "/Pics", // root of directories of Dropbox to be scanned.
        sort: "random", //"time09", "time90", "nameAZ", "nameZA", "random"
        tokenLocationIQ : "secret", // See http://locationiq.org/#register
        dropboxAccessToken: "secret",
        width: "100%", // 'px' or '%' or valid value for CSS dimensions units.
        height: "100%",
        mode: "contain", // 'cover', 'contain', 'hybrid' or any other values for CSS `background-size`
        dateTimeFormat: "HH:mm MMM Do, YYYY", // See. moment.js .format()
      }
    },
    

    All I did was change my directory and API codes, but its giving the syntax error during startup. Seeing anything?

    J 2 Replies Last reply Aug 5, 2018, 2:02 PM Reply Quote 0
    • J Offline
      justjim1220 Module Developer @smartsoldier
      last edited by Aug 5, 2018, 2:02 PM

      @smartsoldier said in Quick Syntax Error:

      dateTimeFormat: “HH:mm MMM Do, YYYY”, // See. moment.js .format()

      take out the comma after YYYY"

      "Life's Too Short To Dance With Ugly People"
      Jim Hallock - 1995

      1 Reply Last reply Reply Quote 0
      • ? Offline
        A Former User
        last edited by A Former User Aug 5, 2018, 3:20 PM Aug 5, 2018, 3:20 PM

        @smartsoldier
        I’ve copied your configuration and tried. but there was no syntax error.

        {
        		  module: 'MMM-DropboxWallpaper',
        		  position: 'fullscreen_below', // fullscreen_below is the best position.
        		  classes: "default everyone", // when you use MMM-ProfileSwitcher.
        		  config: {
        		    refreshInterval: 1000*60,
        		    search: [".jpg", ".png", ".gif"], // Or you can find target files like "PARTIAL FILENAME". (wildcard or regexp not supported)
        		    directory: "/MyMirror", // root of directories of Dropbox to be scanned.
        		    sort: "random", //"time09", "time90", "nameAZ", "nameZA", "random"
        		    tokenLocationIQ : "", // See http://locationiq.org/#register
        		    dropboxAccessToken: "",
        		    width: "100%", // 'px' or '%' or valid value for CSS dimensions units.
        		    height: "100%",
        		    mode: "contain", // 'cover', 'contain', 'hybrid' or any other values for CSS `background-size`
        		    dateTimeFormat: "HH:mm MMM Do, YYYY", // See. moment.js .format()
        		  }
        		},
        
        1 Reply Last reply Reply Quote 0
        • E Offline
          evroom
          last edited by Aug 5, 2018, 4:03 PM

          I would try changing this:

          tokenLocationIQ : "secret",
          

          to this:

          tokenLocationIQ: "secret",
          

          MagicMirror version: 2.30.0
          Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          Test environment:
          MagicMirror version: v2.30.0
          Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          1 Reply Last reply Reply Quote 0
          • S Offline
            smartsoldier
            last edited by Aug 5, 2018, 4:31 PM

            I tried taking out the comma after YYYY, and moving the : closer to tokenLocationIQ. Neither worked. I’m not really sure how Sean managed to run without syntax errors when I am using the exact same config…

            ? 2 Replies Last reply Aug 5, 2018, 5:13 PM Reply Quote 0
            • ? Offline
              A Former User @smartsoldier
              last edited by Aug 5, 2018, 5:13 PM

              @smartsoldier I’ve copied from your post and nothing changed except some private values(tokens)

              1 Reply Last reply Reply Quote 0
              • ? Offline
                A Former User @smartsoldier
                last edited by Aug 5, 2018, 5:17 PM

                @smartsoldier
                Most of the syntax errors could be raised by missing or exceeding bracket, comma.
                I suggest you remove configuration of modules one-by-one and try.
                Or you should upload a complete config.js here.

                1 Reply Last reply Reply Quote 0
                • E Offline
                  evroom
                  last edited by Aug 5, 2018, 5:54 PM

                  I also do not get an error when copy/pasting your config lines.

                  $ npm run config:check
                  

                  does not give an error.
                  You should try it yourself; a very useful command.
                  Perhaps the error does not apply to the MMM-DropboxWallpaper config ?

                  MagicMirror version: 2.30.0
                  Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  Test environment:
                  MagicMirror version: v2.30.0
                  Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  1 Reply Last reply Reply Quote 0
                  • S Offline
                    smartsoldier
                    last edited by Aug 5, 2018, 6:08 PM

                    Ok well I used npm run config:check and it found no errors, but I still get the syntax error message is red when I start up the MM. What is happening!??!

                    ? 1 Reply Last reply Aug 5, 2018, 6:20 PM Reply Quote 0
                    • ? Offline
                      A Former User @smartsoldier
                      last edited by Aug 5, 2018, 6:20 PM

                      @smartsoldier We don’t know. Remove all the modules in config.js and add one-by-one. Let’s see what happens.

                      S 1 Reply Last reply Aug 5, 2018, 6:21 PM Reply Quote 0
                      • 1
                      • 2
                      • 1 / 2
                      1 / 2
                      • First post
                        9/20
                        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