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.

    Hello-Lucy

    Scheduled Pinned Locked Moved Fun & Games
    285 Posts 27 Posters 682.7k Views 27 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.
    • Mykle1M Offline
      Mykle1 Project Sponsor Module Developer @mdhenriksen
      last edited by

      @mdhenriksen said in Hello-Lucy:

      You can make MMM-pages and MMM-voice switch between specific pages with very minors tweaks.

      Well, sure you can, but he didn’t mention wanting, or being able to do any modifications

      Create a working config
      How to add modules

      M X 2 Replies Last reply Reply Quote 1
      • M Offline
        mdhenriksen @Mykle1
        last edited by

        @mykle1 You’re right, guess I was too fast ;-)

        D 1 Reply Last reply Reply Quote 0
        • D Offline
          dazza120 @mdhenriksen
          last edited by

          @mdhenriksen this is my config file so far for pages not sure how I add a third page any ideas

          {
          module: ‘MMM-pages’,
          config: {
          modules:
          [[ “MMM-NOAA3”, “clock”, “MMM-NetworkConnection”, “mmm-hue-lights”, “mmm-nest-status”, “calendar”, “mmm-systemtemperature”, “compliments”, “newsfeed”],
          [ “MMM-GoogleMapsTraffic” ]],
          excludes: [“MMM-page-indicator”],
          }
          },

          bheplerB 1 Reply Last reply Reply Quote 0
          • M Offline
            mdhenriksen @dazza120
            last edited by

            @dazza120 said in Hello-Lucy:

            @mdhenriksen works a treat but I don’t know how to make a third page. Not sure what I’ll put on it? But I’m sure I’ll find something to install if I figure out how to add more pages it’s stuck on two at the mo 😢

            Hey Dazza!

            It’s pretty easy actually. Now first you should install MMM-page-indicator as well. That makes it easier to see what page you are on.

            Making several pages:

            {
                   module: 'MMM-pages',
                   config: {
                   modules:
                               	[[ "weatherforecast", "newsfeed", "compliments"],
                                 	[ "calendar", "compliments", "calendar2"], ["MMM-CalendarWeek"]],
                            	excludes: ["clock", "currentweather", "MMM-page-indicator", "MMM-voice"],
                    	}
                		},
            

            The pages are made in an 2D-array, which is basically a line of elements separated by the brackets “[” and “]”.

            Your array starts at the double bracket, “[[” right before “weatherforecast” and ends at the “]]” right after “MMM-CalendarWeek”. Inside the array the pages are separated by one bracket.

            So this is a page: (remember the comma at the end)

            [ "weatherforecast", "newsfeed", "compliments"],         
            

            And this is a page:

            [ "calendar", "compliments", "calendar2"],
            

            And lastly this is a page as well:

            ["MMM-CalendarWeek"]
            

            Remember that the array is zero-based which means that the first page will be number 0. The second will be number 1 and the third will be number 2.

            Hope it helps! :grinning_face_with_smiling_eyes:

            D 1 Reply Last reply Reply Quote 1
            • D Offline
              dazza120 @mdhenriksen
              last edited by

              @mdhenriksen had the page indicator already but I was being a muppet, I didn’t recognise ]] as a closing part for that module, Thank you very much three pages now lol

              M 1 Reply Last reply Reply Quote 0
              • M Offline
                mdhenriksen @dazza120
                last edited by

                @dazza120 It’s the small things that make the difference :grinning_face_with_smiling_eyes:

                1 Reply Last reply Reply Quote 1
                • X Offline
                  Xclasher 0 @Mykle1
                  last edited by

                  @mykle1 Thanks :D I have tested out the integration of both modules. However, I have modified the MMM-voice to have pages in it as stated in the Hello-Lucy documentation. The modules I have included in the MMM-voice pages does not hide when I go to the specific page of the MMM-pages where the MMM-voice is. Any idea how i can hide the modules?

                  Mykle1M M 2 Replies Last reply Reply Quote 0
                  • bheplerB Offline
                    bhepler Module Developer @dazza120
                    last edited by

                    @dazza120 - Please use the Markdown features of the forum when posting code.

                    1 Reply Last reply Reply Quote 1
                    • Mykle1M Offline
                      Mykle1 Project Sponsor Module Developer @Xclasher 0
                      last edited by

                      @xclasher-0 said in Hello-Lucy:

                      The modules I have included in the MMM-voice pages does not hide when I go to the specific page of the MMM-pages where the MMM-voice is

                      This is a bit confusing. You’re using MMM- voice with Hello-Lucy AND MMM-pages? My guide on the Hello-Lucy repo is quite easy to follow but I can still help with that. If you’re trying to integrate MMM-pages with that as well then I can’t help you. MMM-pages is not my module. I’ve never used it. You would likely have to modify MMM-voice and MMM-pages

                      Create a working config
                      How to add modules

                      1 Reply Last reply Reply Quote 0
                      • M Offline
                        mdhenriksen @Xclasher 0
                        last edited by

                        @xclasher-0 said in Hello-Lucy:

                        The modules I have included in the MMM-voice pages does not hide when I go to the specific page of the MMM-pages where the MMM-voice is. Any idea how i can hide the modules?

                        Hey there! I’m not 100% what you mean, but you can easily hide modules in MMM-pages. The ones that keep showing up might be in your “exclude” section of MMM-pages in your config.js. Anything in “exclude” will show up on every page you have, so you have to remove the modules from that.

                        X 1 Reply Last reply Reply Quote 0
                        • Mykle1M Offline
                          Mykle1 Project Sponsor Module Developer
                          last edited by

                          I started thinking, "Why am I using page names like Page One, Page Two? Why not “Weather” for a page of weather modules? Or “Sports” for a page of sports modules? You get the idea. I hope. :-)

                          https://www.youtube.com/watch?v=Zsm_hi7XvM4&feature=youtu.be

                          Create a working config
                          How to add modules

                          1 Reply Last reply Reply Quote 0
                          • X Offline
                            Xclasher 0 @mdhenriksen
                            last edited by

                            @mdhenriksen Hi sorry for the late reply. Let me rephrase my question a bit. What I would like to do is just to have MMM-voice (With Lucy) work on one of the pages (From MMM-pages).

                            I got that to work however, the pages I created from MMM-voice(With Lucy) aren’t working. And when I included the specific modules, it shows up all the time and does not hide. Though it still response with MMM-voice (With Lucy)

                            So the problem is, how do I hide the specified modules at the start when magic mirror boot up?.

                            Mykle1M 1 Reply Last reply Reply Quote 0
                            • Mykle1M Offline
                              Mykle1 Project Sponsor Module Developer @Xclasher 0
                              last edited by

                              @xclasher-0 said in Hello-Lucy:

                              the pages I created from MMM-voice(With Lucy) aren’t working. And when I included the specific modules, it shows up all the time and does not hide. Though it still response with MMM-voice (With Lucy)
                              So the problem is, how do I hide the specified modules at the start when magic mirror boot up?.

                              I’m still not sure why you want to use some pages with MMM-pages and others with Hello-Lucy. However, unless there is some conflict with MMM-pages then we can assume you haven’t created your pages correctly in Hello-Lucy. The readme is explicit and should be followed precisely. When you have done it correctly, the only modules displayed at start up will be MMM-voice (and MMM-EasyPix if you are using the face.gif or another image)

                              Create a working config
                              How to add modules

                              1 Reply Last reply Reply Quote 0
                              • A Offline
                                Anthony Project Sponsor
                                last edited by

                                I have some problems with Hello Lucy. Firstly sometimes when the MM reloads after Say"Hello, Lucy" I get an ERROR in mic’s icon place. Secondly when I don’t get the ERROR and I say : “MAGIC MIRROR” (my keyword) tha mic icon start flashing (not saying VOICE) but after that anything I say nothing is shown. And i don’t get any errors in pm2 logs or when I start MM with npm start dev . Any suggestions?

                                Mykle1M 1 Reply Last reply Reply Quote 0
                                • Mykle1M Offline
                                  Mykle1 Project Sponsor Module Developer @Anthony
                                  last edited by Mykle1

                                  @anthony

                                  If you reload MM while MM is running you will get “an ERROR in mic’s icon place.” If you quit MM and relaunch MM you will not get this error.

                                  When the mic starts flashing after saying your keyword “Magic MIrror” then Lucy is expecting a command. Example: Show Weather, Show Clock, Show Page One, etc.

                                  You have to follow the instructions in the README file precisely if you are adding modules of your own. There is a list of modules that works be default in the README, as well. Those will all work without any modification by you. Any pages you create will have to be done as described in the README.

                                  If you have trouble with a particular module I will help you. What commands are you saying to Lucy that do not work?

                                  Create a working config
                                  How to add modules

                                  A 1 Reply Last reply Reply Quote 0
                                  • A Offline
                                    Anthony Project Sponsor @Mykle1
                                    last edited by Anthony

                                    @mykle1
                                    I didn’t know that I must quit and restart MM for the mic to work properly. So the first problem solved. With the second one I know after the mic start flashing a command should follow but whatever I say lucy do nothing. For example after I say “Magic Mirror” and the mic icon start flashing I say “Show Clock” and nothing happens. I tried all default modules and nothing. I have added some modules to work with Lucy and did it exactly as you mentioned in the README. Also I have set in my config to start hidden and it does. It just don’t show anything. And sometimes when I say the wake word it does not even start flashing.

                                    Mykle1M 1 Reply Last reply Reply Quote 0
                                    • ejay-ibmE Offline
                                      ejay-ibm Project Sponsor Module Developer
                                      last edited by ejay-ibm

                                      Hi @Mykle1 I don’t want to pollute your thread if my post isn’t appropriate here i’ll create a new one.

                                      I love the animated avatar, could you point me where did you get it ?
                                      I’m looking for 2 of the same kind. One like you have, the other with moving lips so it would look like it talk when the assistant reply to you with her voice. I have in mind how to achieve this, but I’m missing the gif sources .
                                      Thank you

                                      Ejay

                                      A 1 Reply Last reply Reply Quote 0
                                      • A Offline
                                        Anthony Project Sponsor @ejay-ibm
                                        last edited by

                                        @ejay-ibm
                                        Check this out: Original animated gif can be gotten here. It’s 60+ MB. https://github.com/HackerHouseYT/AI-Smart-Mirror/blob/master/magic_mirror/aiclient/face.gif.
                                        It is copy pasted from Mykles1’s README file. I hope this is what you are looking for.

                                        ejay-ibmE 1 Reply Last reply Reply Quote 0
                                        • ejay-ibmE Offline
                                          ejay-ibm Project Sponsor Module Developer @Anthony
                                          last edited by

                                          @anthony Thanks , I’m looking now for the same with animated lips
                                          https://giphy.com/gifs/geocities-sl5XI0eWn5IjK
                                          Something like this with more style. ^^

                                          I’ll see if I can work with the 60mb file and make it move the lips .

                                          thank you

                                          Mykle1M 1 Reply Last reply Reply Quote 0
                                          • Mykle1M Offline
                                            Mykle1 Project Sponsor Module Developer @ejay-ibm
                                            last edited by

                                            @ejay-ibm

                                            There is a 25MB version in the Hello-Lucy repo

                                            https://github.com/mykle1/Hello-Lucy

                                            Create a working config
                                            How to add modules

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 11
                                            • 12
                                            • 13
                                            • 14
                                            • 15
                                            • 14 / 15
                                            • First post
                                              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