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

    Posts

    Recent Best Controversial
    • RE: almost happy.. but i whant

      @planet4 Vad man blir glad att se svenskar:) Din sidan har jag hängt mkt på:) grymt bra.
      har lyckats installera alexa, nu kommer det svåraste av allt att lösa confi.js det är lurigt… den är ju gansak så känslig på de:/ inte hittat några riktigt bra program, använder visual studio code…

      posted in General Discussion
      B
      berne
    • RE: config,js beginner

      @mumblebaj
      This is my config now, is it looking right? i havet dare to past in to the config,js berfore some one can tell me its right

      /* Magic Mirror Config Sample
       *
       * 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: "metric",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      	           module: "MMM-NowPlayingOnSpotify",
      			position: "bottom_right",
      			config: {
      				showCoverArt: true,
                      		clientID: "XXXXXXXX",
      				clientSecret: "XXXXXXXX",
      				accessToken: "XXXXXXXXX",
      				refreshToken: "XXXXXXXX"
      				}
      		},
      		{
      			  module: 'MMM-awesome-alexa',
      			position: 'bottom_bar',
      			config: {
      			  wakeWord: 'Smart Mirror',
      			        clientId: 'XXXXXXX',
      			    clientSecret: 'XXXXXX',
      			    deviceId: 'Magic_Mirror',
      			    refreshToken: 'XXXXXXX',
      			    lite: false,
      			    isSpeechVisualizationEnabled: true
      			}
      		  }
      		  
      		{
      
      		module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			header: "Kalender",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "https://calendar.google.com/calendar/ical/berntsson88%40gmail.com/public/basic.ics"					}
      				]
      			}
      		},
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		{
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "Vara,Sweden",
      				locationID: "2665018",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "cb3ba3fb9618b6f6de3fbbb9ee78284e"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "Vara,Sweden",
      				locationID: "5128581",  //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      				appid: "cb3ba3fb9618b6f6de3fbbb9ee78284e"
      			}
      		},
      		{
      			module: "newsfeed",
      			position: "bottom_bar",
      			config: {
      				feeds: [
      				{
      						title: "Aftonbladet",
      						url: "http://www.aftonbladet.se/nyheter/rss.xml"
                                      },
                                      {
      					        title: "Macworld",
                                                      url: "http://feeds.idg.se/idg/FPjt",
                                      },
      	
                                     
      				],
      				showSourceTitle: true,
      				showPublishDate: true,
      				broadcastNewsFeeds: true,
      				broadcastNewsUpdates: true
      			}
      		},
      	]
      
      };
      
      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== "undefined") {module.exports = config;}
      posted in Troubleshooting
      B
      berne
    • RE: MMM-Awesome-Alexa & MMM-Scoreboard

      @stalker401 400 Bad Request
      The redirect URI you provided has not been whitelisted for your application. Please add your redirect URI in the ‘Allowed Return URLs’ section under ‘Web Settings’ for your Security Profile on Amazon Developer Portal. is what i get, but i am using this link: https://magic-mirror-avs.github.io/Alexa-Web-Helper/authresponse i boothe of the links, did u use the same?

      posted in Troubleshooting
      B
      berne
    • RE: MMM-Awesome-Alexa & MMM-Scoreboard

      @stalker401 sorry for op, bur i have problem install alexa, i got get to the last part, to get this:
      https://imgur.com/a/6DbYlKA

      i think i have done it right:
      Enter your Product ID from Alexa Voice Service (AVS): berne88_MM_Alexa
      (is the namn i will put in you self)?
      i am using this link: https://magic-mirror-avs.github.io/Alexa-Web-Helper/authresponse
      on the return URL

      have i done anything wrong?

      posted in Troubleshooting
      B
      berne
    • almost happy.. but i whant

      i have bulide a mm, but not complety happy about it, i miss i few thing
      one i to get alexa to work
      2. i what want to say -mirror mirror on the wall. And det mm sholde start, i have no idee how to fix this. is ther any module i can use? i have trying to install alexa but, got lots of error. think i needs a new update:S not suer

      posted in General Discussion
      B
      berne
    • what Os are u using to mm

      What Os are u using to magicmirror, i got
      Raspbian Buster with desktop and recommended software, but now i dont have any space left, so think about, remove it and use Raspbian Buster Lite istend to get more free space

      posted in General Discussion
      B
      berne
    • RE: Problem install Alexa modul

      @sdetweil

      i im trying mmm-awesome-alexa
      https://github.com/dolanmiu/MMM-awesome-alexa

      Dont know what the diffret is between them

      posted in Troubleshooting
      B
      berne
    • Problem install Alexa modul

      im trying to get the mmm-Alexa, but i have one problem, after folloiwing the guide, i dont get the code from the browers. After i get my client ID and Secret ID. i sholde get a link, to get the pawsord from, in the guide its a github… i just get amazone and this text:

      We’re sorry!
      An error occurred when we tried to process your request. Rest assured, we’re already working on the problem and expect to resolve it shortly.

      can one have any ides?

      posted in Troubleshooting
      B
      berne
    • Alecxa token

      i im installing MMM-awesome-alexa, but i am a bit lost:S i have creata a development acount, but dont know what to do next,
      is it:
      Alexa Skill kitt
      Voice service
      Smart home
      alexa Gadget toolbox
      Alexa SDK

      and so on. to ge the token to it?

      posted in Development
      B
      berne
    • 1 / 1