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

    Topics

    • K

      My config.js file is messed up. someone want to help? :P

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      5
      0 Votes
      5 Posts
      3k Views
      yawnsY
      var config = { port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], language: 'en', timeFormat: 24, units: 'metric', modules: [ { module: 'alert', }, { module: "updatenotification", position: "top_bar" }, { module: 'clock', position: 'top_left' }, { module: 'calendar', header: 'US Holidays', position: 'top_left', config: { calendars: [ { symbol: 'calendar-check-o ', url: 'webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics' } ] } }, { module: 'MMM-SoccerLiveScore', position: 'top_left', header: 'Live-Scores', config: { leagues: [17, 17, 17], showNames: true, showLogos: true, displayTime: 60 * 1000, showTables: true } }, { module: 'MMM-Globe', position: 'center', config: { style: 'europeDiscNat', imageSize: 600, ownImagePath:'', updateInterval: 10*60*1000 } }, { module: 'helloworld', position: 'bottom_right', // This can be any of the regions. config: { text: 'MIA by Karl M. Holst' } }, { module: 'MMM-Carousel', config: { transitionInterval: 30000, ignoreModules: ['clock', 'alert', 'currentweather'], mode: 'slides', slides: [ ['calendar', 'MMM-Globe', 'weatherforecast', 'helloworld'], ['weatherforecast', 'MMM-Globe', 'MMM-SoccerLiveScore', 'helloworld'], ['MMM-iHaveBeenThere'] ], } }, { module: 'MMM-ethereum', position: 'top_right', config: { updateInterval: 30000, exchange: "bitfinex" } } ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;}
    • K

      Mirror mirror on the wall alexa skill

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      20
      0 Votes
      20 Posts
      13k Views
      A
      @noelandrews I got mine working actually. Missed the small step of making a copy of keys_sample.json and calling it keys.json. index.js couldn’t call the proper keys then. Dumb mistake
    • K

      How do I edit config, I see every new module starts whit going to config.js

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      10
      0 Votes
      10 Posts
      5k Views
      yawnsY
      @KMH0 Actually it is always the same thing. Find yourself a module you like, for example: MMM-IP Top right on the github repository you see a green button saying “clone or download”. If you click it you get the url for this repository. In this case it is https://github.com/fewieden/MMM-ip.git Open a terminal on your pi (either directly or using SSH) and type cd ~/MagicMirror/modules Clone the module to your pi by typing git clone https://github.com/fewieden/MMM-ip.git. This downloads the repository and extracts it into a new folder. Enter the new directory cd MMM-ip and run npm install (in this case it is not required … the readme should tell you to do so) Edit your config file and add the code for the new module as the readme instructs to. Restart your magic mirror process and check what happened. Sidenote: If you run into trouble with your config file, you can always paste the content into http://jshint.com/. If everything is fine it will only show this which is fine: One undefined variable 64 module
    • 1 / 1