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

    cade72

    @cade72

    0
    Reputation
    268
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    cade72 Unfollow Follow

    Latest posts made by cade72

    • RE: code issue

      @sean commas always seem to win vs me lol. Thanks!

      posted in Troubleshooting
      C
      cade72
    • RE: code issue

      @sdetweil ohhh all good, I was super confused why it wasnt working. Thanks!

      posted in Troubleshooting
      C
      cade72
    • RE: code issue

      @cade72

      not sure if this helps but here is what comes up when i put in node tests/configs/check_configs.js

      ~/MagicMirror $ node tests/configs/check_configs.js
      internal/modules/cjs/loader.js:550
      throw err;
      ^

      Error: Cannot find module ‘/home/pi/MagicMirror/tests/configs/check_configs.js’
      at Function.Module._resolveFilename (internal/modules/cjs/loader.js:548:15)
      at Function.Module._load (internal/modules/cjs/loader.js:475:25)
      at Function.Module.runMain (internal/modules/cjs/loader.js:695:10)
      at startup (internal/bootstrap/node.js:201:19)
      at bootstrapNodeJSCore (internal/bootstrap/node.js:516:3)

      posted in Troubleshooting
      C
      cade72
    • code issue

      i have no clue what is wrong with my code, I am very new and had to restart my pi because i was testing stuff. I put all my changes back in at once(which I now realized was dumb lol) and now it says config error. i tried to use this
      node tests/configs/check_configs.js but this didnt seem to work. here is the code, thanks in advance for the help!

              language: "en",
              timeFormat: 12,
              units: "imperial",
      
              modules: [
                      {
                              module: "alert",
                      },
                      {
                              module: "updatenotification",
                              position: "top_bar"
                      },
                      {
                              module: "clock",
                              position: "top_left"
                              config: {
                                      displaySeconds: false,
                      }
                      },
                      {
                              module: "",
                              header: "US Holidays",
                              position: "top_left",
                              config: {
                                      calendars: [
                                              {
                                                      symbol: "calendar-check",
                                                      url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
                                              }
                                      ]
                              }
                      },
                      {
                              module: "",
                              position: "lower_third"
                      },
       {
                              module: "currentweather",
                              position: "top_right",
                              config: {
                                      onlyTemp: true,
                                      roundTemp: true,
                                      location: "Shawnee",
                                      locationID: "4279247",  //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city
                                      appid: "6272b5d982857a7f9dc98abe37f263f4"
                              }
                      },
                      {
                              module: "weatherforecast",
                              position: "top_right",
                              header: "Weather Forecast",
                              config: {
                                      roundTemp: true,
                                      location: "Shawnee",
                                      locationID: "4279247",  //ID from https://openweathermap.org/city
                                      appid: "6272b5d982857a7f9dc98abe37f263f4"
                              }
                      },
                      {
                              module: "",
                              position: "bottom_bar",
                              config: {
                                      feeds: [
                                              {
                                                      title: "New York Times",
                                                      url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                                              }
                                      ],
       showSourceTitle: true,
                                      showPublishDate: true
                              }
                      },
              ]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      
      posted in Troubleshooting
      C
      cade72
    • RE: basic help

      thanks everyone, this helped a lot!

      posted in Troubleshooting
      C
      cade72
    • basic help

      Hi, I am very new to everything(sorry) and have a question. it would be awesome if someone helped.

      I followed this from what I understood was I should put this

      {
      		module: "clock",
      		position: "top_left",	
      		config: {
      			displaySeconds: false,
      	                clockBold: true,
      		}
      	}
      

      this didnt work and now I feel dumb:face_with_tears_of_joy: any help would be awesome. this is kinda my first time I have dabbled in programming so sorry again for the basic question.

      posted in Troubleshooting
      C
      cade72