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

New and confused.

Scheduled Pinned Locked Moved General Discussion
55 Posts 5 Posters 26.7k Views 5 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 @mickyas
    last edited by Jun 26, 2017, 8:38 PM

    @mickyas said in New and confused.:

    I owe you a pint :-))

    My favorite pint and my favorite pub to drink it in. Unfortunately, it’s 3,459 miles away from where I live, on the other side of the pond.
    0_1498509508844_beer1.jpg 0_1498509524902_place1.jpg

    Create a working config
    How to add modules

    M 1 Reply Last reply Jun 28, 2017, 7:51 PM Reply Quote 3
    • M Offline
      mickyas @Mykle1
      last edited by mickyas Jun 28, 2017, 9:08 PM Jun 28, 2017, 7:51 PM

      @Mykle1 Just a couple of questions…

      1. I noticed a previous post from you about the colour weather module you installed, is it available to clone???
      2. Can i have multiple modules running at once, or do i have to switch between them…i.e the Magic mirror, Alexa, remote control (which i’d really like to try) etc?
        Thanks
        Mick

      This is crazy…the more i search, the more confused i become and the more i get distracted by the umpteen modules i’d like to have :-)))…first off is using my laptop to access the pi3 (its annoying trying to pull up pages etc on the pi).
      P.S. just done it using VNC all working so far :-)))

      M 2 Replies Last reply Jun 29, 2017, 12:11 AM Reply Quote 0
      • M Offline
        Mykle1 Project Sponsor Module Developer @mickyas
        last edited by Mykle1 Jun 29, 2017, 12:13 AM Jun 29, 2017, 12:11 AM

        @mickyas said in New and confused.:

        I noticed a previous post from you about the colour weather module you installed, is it available to clone???

        I’m pretty sure you mean WunderGround. That’s what I use. Here is the link.

        https://github.com/RedNax67/MMM-WunderGround

        Also, @j-e-f-f has done some remarkable things with some weather modules. Look around/search for his work.

        Can i have multiple modules running at once, or do i have to switch between them…i.e the Magic mirror, Alexa, remote control (which i’d really like to try) etc?

        Not sure what you mean here. Yes, you can have many modules running at the same time. Didn’t you start out with a clock, and a calendar, and a newsfeed, all at the same time?

        I think everyone goes through that, including me. I wanted to LOAD UP on as many modules as I could fit on the mirror. Ultimately, I chose the ones that I like the most, with a few of my own. You’ll have to decide what you want at some point. It doesn’t hurt to try them all to decide what you want.

        Yes, I use VNC also. I haven’t touched the actual mirror in months. I just sit at my dev machine and work on the mirror from there

        Create a working config
        How to add modules

        M 2 Replies Last reply Jun 29, 2017, 5:09 PM Reply Quote 1
        • M Offline
          Mykle1 Project Sponsor Module Developer @mickyas
          last edited by Jun 29, 2017, 2:04 AM

          @mickyas said in New and confused.:

          I noticed a previous post from you about the colour weather module you installed, is it available to clone

          Is this the weather you mean? See the link above
          0_1498701857384_33.jpg

          Create a working config
          How to add modules

          1 Reply Last reply Reply Quote 1
          • M Offline
            mickyas @Mykle1
            last edited by Jun 29, 2017, 5:09 PM

            This post is deleted!
            1 Reply Last reply Reply Quote 0
            • M Offline
              mickyas @Mykle1
              last edited by mickyas Jun 29, 2017, 6:57 PM Jun 29, 2017, 5:13 PM

              @Mykle1 said in New and confused.:

              Not sure what you mean here. Yes, you can have many modules running at the same time. Didn’t you start out with a clock, and a calendar, and a newsfeed, all at the same time?

              Ah, there’s my confusion…i thought the magic mirror (date, weather, calendar etc) was one module. :-))
              I was wondering if it is possible to have the magic mirror 2 running on the screen with Alexa ‘asleep’ in the background to be woken with a ‘wake’ word and say, a music app playing etc.

              Yes, the WunderGround is the one i was looking at…very nice.
              Mick

              Heeds battered…how do i use the wunderground module ??? i have opened the magic mirror config js file i have copied and pasted the block of code (using git clone etc) but it comes up with an error telling me to ‘Please create a config file’ ??? (tried the 3 back-tick rule for code, but this is how it came out)

              	port: 8080,
              	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses.
              
              	language: "en",
              	timeFormat: 24,
              	units: "metric",
              modules: [
              {
                  module: 'MMM-WunderGround',
                  position: 'top_right',
                  config: {
                      apikey: 'my api i.d. here', // private; don't share!
                      pws: 'pws:DH9 6PA', //England
                      hourly: '1',
                      fctext: '1',
                      fcdaycount: "5",
                      fcdaystart: "0",
                      hourlyinterval: "3",
                      hourlycount: "2",
                      alerttime: 10000,
                      alerttruncatestring: "english:",
              	roundTmpDecs: 1,
              	UseCardinals: 0,
              	layout: "horizontal",
              	sysstat: 0
                  }
              };
              ]
              	modules: [
              		{
              			module: "alert",
              		},
              		{
              			module: "updatenotification",
              			position: "top_bar"```
              M 2 Replies Last reply Jun 30, 2017, 12:14 AM Reply Quote 0
              • C Offline
                cowboysdude Module Developer
                last edited by Jun 29, 2017, 10:21 PM

                @mickyas said in New and confused.:

                ‘top_right’

                Well my guess would be that you copied the config from one place to another … replace all of these ` [backtick] with this ’ [single quote]

                Then retry ;)

                M 1 Reply Last reply Jun 30, 2017, 6:48 AM Reply Quote 0
                • M Offline
                  Mykle1 Project Sponsor Module Developer @mickyas
                  last edited by Mykle1 Jun 30, 2017, 12:17 AM Jun 30, 2017, 12:14 AM

                  @mickyas said in New and confused.:

                  how do i use the wunderground module ???

                  Well, the instructions should be in the README file that came with the module. At this point, you should be making entries without a problem. :-)

                  I can tell you that the pws: 'pws:DH9 6PA', you are using is no good. I just tried it in mine, with and without the space, which drew my attention.

                  So, try this when posting code with back-ticks:

                  Put 3 backticks on a new line and Enter

                  Post your code under the backticks and Enter

                  Put 3 backticks on a new line and Enter

                  And, just in case, NO backticks in your config.js file

                  Create a working config
                  How to add modules

                  1 Reply Last reply Reply Quote 1
                  • M Offline
                    Mykle1 Project Sponsor Module Developer @mickyas
                    last edited by Jun 30, 2017, 12:27 AM

                    @mickyas said in New and confused.:

                    I was wondering if it is possible to have the magic mirror 2 running on the screen with Alexa ‘asleep’ in the background to be woken with a ‘wake’ word and say, a music app playing etc.

                    You could start a new topic on Alexa, or do a search here on the forum. Other people have integrated Alexa with their mirrors. I have never used it so I won’t be able to help you with that.

                    Create a working config
                    How to add modules

                    1 Reply Last reply Reply Quote 0
                    • M Offline
                      mickyas @cowboysdude
                      last edited by Jun 30, 2017, 6:48 AM

                      @cowboysdude said in New and confused.:

                      @mickyas said in New and confused.:

                      ‘top_right’

                      Well my guess would be that you copied the config from one place to another … replace all of these ` [backtick] with this ’ [single quote]

                      Then retry ;)

                      No, the backticks I added to try and display the code in my message correctly, obviously didn’t work 😊😊😊.

                      M 1 Reply Last reply Jun 30, 2017, 9:43 PM Reply Quote 1
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 6
                      • 5 / 6
                      5 / 6
                      • First post
                        48/55
                        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