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

Possible Error in My Code?

Scheduled Pinned Locked Moved Troubleshooting
18 Posts 4 Posters 6.2k 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.
  • M Offline
    Mykle1 Project Sponsor Module Developer @Wiltify
    last edited by Oct 18, 2017, 12:14 AM

    @Wiltify said in Possible Error in My Code?:

    position: “top_left”

    Needs a comma position: "top_left",

    Create a working config
    How to add modules

    W 1 Reply Last reply Oct 18, 2017, 12:18 AM Reply Quote 1
    • W Offline
      Wiltify @Mykle1
      last edited by Oct 18, 2017, 12:18 AM

      @Mykle1

      Thank you, humbling moment of the day.

      M 1 Reply Last reply Oct 18, 2017, 12:18 AM Reply Quote 1
      • M Offline
        Mykle1 Project Sponsor Module Developer @Wiltify
        last edited by Oct 18, 2017, 12:18 AM

        @Wiltify said in Possible Error in My Code?:

        Thank you, humbling moment of the day.

        No worries, mate. We’ve all been there.

        Create a working config
        How to add modules

        1 Reply Last reply Reply Quote 1
        • C Offline
          cowboysdude Module Developer
          last edited by Oct 18, 2017, 12:20 AM

          You’re welcome…

          1 Reply Last reply Reply Quote 1
          • W Offline
            Wiltify @cowboysdude
            last edited by Oct 18, 2017, 1:00 AM

            @cowboysdude Jeez, I didn’t even see this, sorry… Thank you!!

            M 1 Reply Last reply Oct 18, 2017, 1:05 AM Reply Quote 2
            • M Offline
              Mykle1 Project Sponsor Module Developer @Wiltify
              last edited by Oct 18, 2017, 1:05 AM

              @Wiltify said in Possible Error in My Code?:

              Jeez, I didn’t even see this, sorry… Thank you!!

              Cowboysdude is a freakin Guru!

              Create a working config
              How to add modules

              1 Reply Last reply Reply Quote 1
              • W Offline
                Wiltify
                last edited by Oct 18, 2017, 1:46 AM

                I don’t know if I downloaded the fitbit module correct, something maybe wrong in my code first?

                 *
                 * By Michael Teeuw http://michaelteeuw.nl
                 * MIT Licensed.
                 *
                 * For more information how you can configurate this file
                 * See https://github.com/MichMich/MagicMirror#configuration
                 *
                 */
                
                var config = {
                        address: "localhost", // Address to listen on, can be:
                                              // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
                                              // - another specific IPv4/6 to listen on a specific interface
                                              // - "", "0.0.0.0", "::" to listen on any interface
                                              // Default, when address config is left out, is "localhost"
                        port: 8080,
                        ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
                                                                               // or add a specific IPv4 of 192.168.1.5 :
                                                                               // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
                                                                               // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
                                                                               // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],
                
                        language: "en",
                        timeFormat: 24,
                        units: "imperial",
                
                        modules: [
                                {
                                        module: "alert",
                                },
                                {
                                        module: "updatenotification",
                                        position: "top_bar"
                                },
                                {
                                        module: "clock",
                                        position: "top_left",
                                        config: {
                                                timeFormat: "12",
                                                displaySeconds: "false",
                                                showPeriod: "true",
                                                timezone: "America/New_York"
                                        }
                                },
                                {
                                        module: "currentweather",
                                        position: "top_left",
                                        config: {
                                                locationID: "4839416",  //ID from http://www.openweathermap.org/help/city_list.txt
                                                appid: "a8fcb80620f43f70c4e6141e5e0f09dc",
                                                units: "imperial",
                                                roundTemp: "true",
                                                degreeLabel: "true",
                                                showHumidity: "true"
                                        }
                                },
                                {
                                        module: "weatherforecast",
                                        position: "top_left",
                                        config: {
                                                locationID: "4839416",
                                                appid:"a8fcb80620f43f70c4e6141e5e0f09dc",
                                                units: "imperial",
                                                roundTemp: "true",
                                                showRainAmount: "true"
                                        }
                                },
                                {
                                        module: 'MMM-fitbit',
                                        position: 'top_center',
                                        config: [
                                                credentials: {
                                                        client_id: ,
                                                        client_secret: ,
                                        },
                                                resources: [
                                                        'steps',
                                                        'floors',
                                                        'caloriesOut',
                                                        'distance',
                                                        'activeMinutes',
                                                        'sleep',
                                                        'heart'
                                                ],
                                                update_interval: 60
                                                ]
                                 }
                ]
                
                };
                M 1 Reply Last reply Oct 18, 2017, 1:50 AM Reply Quote 0
                • M Offline
                  Mykle1 Project Sponsor Module Developer @Wiltify
                  last edited by Mykle1 Oct 18, 2017, 1:51 AM Oct 18, 2017, 1:50 AM

                  @Wiltify

                  Completely missing for the bottom

                  /*************** DO NOT EDIT THE LINE BELOW ***************/
                  if (typeof module !== "undefined") {module.exports = config;}
                  

                  Create a working config
                  How to add modules

                  W 1 Reply Last reply Oct 18, 2017, 1:52 AM Reply Quote 0
                  • W Offline
                    Wiltify @Mykle1
                    last edited by Oct 18, 2017, 1:52 AM

                    @Mykle1 I have that, must not have copied when I brought it into here, whoops…

                    M 1 Reply Last reply Oct 18, 2017, 1:55 AM Reply Quote 0
                    • M Offline
                      Mykle1 Project Sponsor Module Developer @Wiltify
                      last edited by Oct 18, 2017, 1:55 AM

                      @Wiltify

                      I assume you removed the client id and client secret for this post?

                      Create a working config
                      How to add modules

                      W 1 Reply Last reply Oct 18, 2017, 1:57 AM Reply Quote 0
                      • 1
                      • 2
                      • 2 / 2
                      2 / 2
                      • First post
                        7/18
                        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