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

Hello-Lucy

Scheduled Pinned Locked Moved Fun & Games
285 Posts 27 Posters 517.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.
  • M Offline
    maxbachmann @Mykle1
    last edited by Feb 13, 2018, 1:36 PM

    @Mykle1 said in Hello-Lucy:

    @yawns said in Hello-Lucy:

    System performance is awesome, not comparable to the pi at all.

    Exactly.

    After show modules the screen is crowded.

    SHOW MODULES by default will show ALL modules. So, if you have several pages employed it can get busy real fast. Still, it was intentional to have the ability to hide/show all modules, individual modules and pages of modules.

    Ah thats what I Thought :)

    1 Reply Last reply Reply Quote 0
    • C Offline
      cowboysdude Module Developer @cruunnerr
      last edited by Feb 14, 2018, 1:52 AM

      @cruunnerr said in Hello-Lucy:

      @cowboysdude

      U need a touch screen, bro ^^

      It’s running like hell ^^Very nice

      It is a touch screen already ;)

      1 Reply Last reply Reply Quote 0
      • C Offline
        cowboysdude Module Developer @yawns
        last edited by Feb 14, 2018, 2:00 AM

        @yawns said in Hello-Lucy:

        System performance is awesome, not comparable to the pi at all.
        After show modules the screen is crowded. Is this an error as it is not looking like in the beginning of your video? Or did you hide some modules before starting your video?

        Touch hardware is not yet implemented, is it? Would love to see this in action regarding latency and reliability :)

        NO that’s just what happens because when you blanket show modules it shows all pages at once. That’s not a bug it’s just how it works :)

        1 Reply Last reply Reply Quote 0
        • N Offline
          NathanWilcox
          last edited by Feb 15, 2018, 9:09 PM

          @Mykle1

          Great module have been using for some time while developing the mirror.

          I apologise if you have covered this else where but I simply cannot find it, Is there a way to automatically show modules on MagicMirror start as appose to them being hidden and only shown when prompted.

          Thanks

          M 1 Reply Last reply Feb 16, 2018, 1:17 AM Reply Quote 0
          • M Offline
            Mykle1 Project Sponsor Module Developer @NathanWilcox
            last edited by Feb 16, 2018, 1:17 AM

            @NathanWilcox said in Hello-Lucy:

            Is there a way to automatically show modules on MagicMirror start as appose to them being hidden and only shown when prompted.

            If you’re not gun shy about modifying the files yourself, you can find this in the MMM-voice.js file and comment it out. You’ll find it at about line 277. I assume you know that every module you have loading will be displayed. :-)

                 if (notification === 'DOM_OBJECTS_CREATED') {
                     MM.getModules().enumerate((module) => {
                            module.hide(1000);
                        });   
                 } 
            

            Create a working config
            How to add modules

            1 Reply Last reply Reply Quote 2
            • N Offline
              NathanWilcox
              last edited by Feb 16, 2018, 2:05 PM

              @Mykle1

              That’s exactly what I was looking for. Yes I did realise it would show all.

              I’m trying to demonstrate to the other half the different ways we can have the mirror and she wasn’t too enthusiastic with booting a “blank screen”

              M 1 Reply Last reply Feb 16, 2018, 2:32 PM Reply Quote 1
              • M Offline
                Mykle1 Project Sponsor Module Developer @NathanWilcox
                last edited by Feb 16, 2018, 2:32 PM

                @NathanWilcox

                Sound of whip snapping

                ;-)

                Create a working config
                How to add modules

                1 Reply Last reply Reply Quote 1
                • M Offline
                  maxbachmann
                  last edited by maxbachmann Feb 16, 2018, 5:19 PM Feb 16, 2018, 3:27 PM

                  Will give Snips a try when I get my microphone array. Seems like the just released ther German automated speech recognition a few days ago

                  Seems pretty easy in general (I guess the hardest thing will be talking to the modules since snips uses python and here it’s java script while I am usually only using c++ lmao)

                  Edit: Just realised there is already a mqtt module for MagicMirror2 that should make it quite a bit easier

                  1 Reply Last reply Reply Quote 0
                  • D Offline
                    djsunrise19
                    last edited by Mar 2, 2018, 1:19 PM

                    @mykle1: Very nice module! Works really good, and it’s easy to add more and more modules. unfortunately, with one of them, I have a problem: https://github.com/eouia/MMM-CalendarExt.

                    I found the wrapper part, but it doesn’t work. The other modules are still working. Do you have an idea?

                      getDom: function() {
                        if (this.isInit) {
                          R = new Render ()
                          R.drawViews(
                            this.CurrentConfigs,
                            this.getEventsToDraw()
                          )
                        }
                        var wrapper = null
                        wrapper = document.createElement("div")
                        wrapper.id = 'CALEXT_proxy'
                        wrapper.className = 'proxy'
                        return wrapper
                      },
                    
                        notificationReceived: function(notification, payload) {
                            if (notification === 'HIDE_WORK') {
                                this.hide(1000);
                            }  else if (notification === 'SHOW_WORK') {
                                this.show(1000);
                            }
                                
                        },	  
                    

                    Thank you!

                    M 1 Reply Last reply Mar 3, 2018, 12:03 AM Reply Quote 0
                    • M Offline
                      Mykle1 Project Sponsor Module Developer @djsunrise19
                      last edited by Mar 3, 2018, 12:03 AM

                      @djsunrise19

                      That looks right.

                      Have you made the other changes that you need to make, according to the readme? That is not the only modification you need to perform.
                      If you issue the “SHOW MODULES” command, does it show then?
                      Is there another " notificationReceived: function" within the MMM-CalendarExt.js file?

                      Create a working config
                      How to add modules

                      D 1 Reply Last reply Mar 3, 2018, 8:55 AM Reply Quote 0
                      • 1
                      • 2
                      • 5
                      • 6
                      • 7
                      • 8
                      • 9
                      • 28
                      • 29
                      • 7 / 29
                      • 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