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

    Posts

    Recent Best Controversial
    • Device ID for Alexa

      When setting up Alexa it comes a point it asks for client id, secret client number, and device id. I have used security profile name, security profile id, and Amazon id. none work. where do I find device id?

      posted in General Discussion
      N
      navyvette87
    • RE: Google Assistant w/ Magicmirror

      @cowboysdude Ok got mic and speakers today got them working, now im down to

      Then execute this on your MagicMirror terminal.(not via SSH)

      cd /modules/MMM-Assistant
      node google-auth.js

      in the instructables. does this mean from the screen that is attached to pi, not vnc from the laptop?

      posted in General Discussion
      N
      navyvette87
    • RE: Google Assistant w/ Magicmirror

      going to give it a try. I get the mic and speaker monday, so ill wait to try anything again.

      posted in General Discussion
      N
      navyvette87
    • Google Assistant w/ Magicmirror

      http://www.instructables.com/id/Hands-Free-Google-Assistant-for-Raspberry-Pi/

      This starts with a dev raspian, and adds Google assistant, Question is, if I do this then add magic mirror, will they work together? Or will it pop up a browser when asked for something. Then can I ask it to close the browser if it does that? Any one used this before?

      I have tried three different tutorials for Alexa and cant get anything to work. So looking for other routes to have voices activated.

      posted in General Discussion
      N
      navyvette87
    • RE: Module placement

      @strawberry-3.141
      Thx that’s awesome

      posted in General Discussion
      N
      navyvette87
    • Module placement

      Am I right in saying that middle_center, lower_third, bottom_center, bottom_bar all will list in order if you have something in each location?

      posted in General Discussion
      N
      navyvette87
    • RE: added new module/not showing up

      @Mykle1 Thanks everyone, got it all together, got the New York Times feed at the bottom, interesting quotes in the middle. Time, date, calendar on left top. Weather top right. Now on to find a screen.

      posted in Troubleshooting
      N
      navyvette87
    • RE: added new module/not showing up

      ok got that one to work, now trying to get stocks put in. the following is the config file,
      /* 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: "imperial",
      
      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: “currentweather”,
      position: “top_right”,
      config: {
      location: “Lompoc, US”,
      locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
      appid: “6ed9d867d3ba972c013edecdef1e685a”
      }
      },
      {
      module: “weatherforecast”,
      position: “top_right”,
      header: “Weather Forecast”,
      config: {
      location: “Lompoc,US”,
      locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
      appid: “6ed9d867d3ba972c013edecdef1e685a”
      }
      },
      {
      module: ‘stocks’,
      position: ‘middle_center’,
      config: {
      stocks: ‘.DJI,MSFT,AAPL,GOOG,INTC,CICS,TSLA,FB’, // stock symbols
      updateInterval: 37000 // update interval in milliseconds
      }
      },
      {
      module: “newsfeed”,
      position: “bottom_bar”,
      config: {
      feeds: [
      {
      title: “New York Times”,
      url: “http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml”
      }
      ],
      showSourceTitle: true,
      showPublishDate: true
      }
      },
      ]

      };

      [
      {
      module: “currentweather”,
      position: “top_right”, // This can be any of the regions.
      // Best results in left or right regions.
      config: {
      // See ‘Configuration options’ for more information.
      location: “Amsterdam,Netherlands”,
      locationID: “”, //Location ID from http://openweathermap.org/help/city_list.txt
      appid: “abcde12345abcde12345abcde12345ab” //openweathermap.org API key.
      }
      }
      ]

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

      And the node start
      Starting MagicMirror: v2.1.3
      Loading config …
      Loading module helpers …
      No helper found for module: alert.
      Initializing new module helper …
      Module helper loaded: updatenotification
      No helper found for module: clock.
      Initializing new module helper …
      Module helper loaded: calendar
      No helper found for module: currentweather.
      No helper found for module: weatherforecast.
      Initializing new module helper …
      Module helper loaded: stocks
      Initializing new module helper …
      Module helper loaded: newsfeed
      All module helpers loaded.
      Starting server on port 8080 …
      Server started …
      Connecting socket for: updatenotification
      Connecting socket for: calendar
      Starting node helper for: calendar
      Connecting socket for: stocks
      stocks helper started …
      Connecting socket for: newsfeed
      Starting module: newsfeed
      Sockets connected & modules started …

      Ready to go! Please point your browser to: http://localhost:8080
      Create new calendar fetcher for url: http://www.calendarlabs.com/templates/ical/US-Holidays.ics - Interval: 300000
      Create new news fetcher for url: http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml - Interval: 300000
      . it looks like it has started the stock helper and socket, but not showing on node screen, I changed the position to middle_center

      posted in Troubleshooting
      N
      navyvette87
    • RE: added new module/not showing up

      @Mykle1 no the weather module. used the link on the main page , I copied the code and inserted it in the config.js. and its not showing up. I can copy it and put it on here later tonight.
      But I think i dropped the jeopardy one in there to, so i will check and up date when I get back to that project tonight.

      posted in Troubleshooting
      N
      navyvette87
    • RE: added new module/not showing up

      @Sean That module is not showing up on the screen though. I put the code in the config file with the { } on either end. so will have to look into it further when I have time.

      posted in Troubleshooting
      N
      navyvette87
    • 1 / 1