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.

    Top 5 unseen modules

    Scheduled Pinned Locked Moved General Discussion
    18 Posts 5 Posters 2.8k 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.
    • S Offline
      sdetweil @brentmatthews
      last edited by

      @brentmatthews burn in depends on the screen technology. i don’t know the specifics, but you can google search and then check your display tech against that

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      1 Reply Last reply Reply Quote 1
      • S Offline
        sdetweil @brentmatthews
        last edited by sdetweil

        @brentmatthews motion detection is easy, there are multiple ways

        pir - heat
        mwave - actual motion
        camera - change in viewed content

        then you have the screen device technology, in the US the energy-star standards implemented to save energy, require monitors to turn off after 15 minutes of no change in input. period.
        AND to WARN the ‘user’ of this impending power off. so, you turn off the hdmi port, and the monitor puts ip an ugly NO INPUT screen.

        now some of the compensation for that is a newer technology, call consumer electronics control, CEC. which provides smarts inside the monitor to receive commands over the hdmi port as well as video signal. turn off, turn on. BUT the hdmi port implementation needs to support that too.

        pi4 is the first to support CEC commands.
        then the module providing motion detection would need to support CEC as well.

        none of my monitors support CEC , all put up the ugly NO INPUT screen. but i don’t want the LIGHT, so i can only hide all the modules. this is an 80% reduction in brightness. it will have to do

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 1
        • BKeyportB Offline
          BKeyport Module Developer @brentmatthews
          last edited by

          @brentmatthews

          I have three:
          Built in Calendar module - While it’s normally a display module, I use it in the background to handle the calendar retrieval for MMM-CalendarExt3 (Day mode), MMM-CalendarExt3Agenda (Agenda), and MMM-Multimonth (My own module for month mode because I didn’t like MMM-CX3’s month mode)

          MMM-CommandToNotification - Enables display of various features, including data for an non-published module I wrote to handle display of my local weather data from my weather station.

          MMM-NotificationToCommand - Much like the previous - it will take a notification and issue a command to the system - I use it to adjust a set of LEDs I have rigged in to match the mode of my mirror.

          The "E" in "Javascript" stands for "Easy"

          J 1 Reply Last reply Reply Quote 1
          • J Offline
            juli2709 @BKeyport
            last edited by

            o@BKeyport said in Top 5 unseen modules:

            @brentmatthews

            I have three:
            Built in Calendar module - While it’s normally a display module, I use it in the background to handle the calendar retrieval for MMM-CalendarExt3 (Day mode), MMM-CalendarExt3Agenda (Agenda), and MMM-Multimonth (My own module for month mode because I didn’t like MMM-CX3’s month mode)

            Hello,

            How did you do that? Can you support me?

            S 1 Reply Last reply Reply Quote 0
            • S Offline
              sdetweil @juli2709
              last edited by

              @juli2709 just comment out the
              position:
              setting for the default calendar module

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              BKeyportB 1 Reply Last reply Reply Quote 0
              • BKeyportB Offline
                BKeyport Module Developer @sdetweil
                last edited by BKeyport

                @juli2709

                two slashes before whatever you want to comment (//):

                			module: "calendar", // Built in
                			//position: "top_center",  // Currently hidden 
                			config: {
                ...
                

                Or, simply don’t include the position item.

                		module: "calendar", // Built in
                			config: {
                    ...
                

                As a side note, if you want to comment out more than one line in the config, you can use the alternate syntax (/* comment */):

                /*	IRS Dropped		{
                						url: "webcal://www.tax.gov/calendar/employer/calendar.ics",
                						name: "IRS",
                						symbol: "dollar-sign",
                						color: green,
                					}, */
                

                this will work with any module.

                The "E" in "Javascript" stands for "Easy"

                J 1 Reply Last reply Reply Quote 0
                • J Offline
                  juli2709 @BKeyport
                  last edited by

                  @BKeyport said in Top 5 unseen modules:

                  // Currently hidden

                  Thank you! Actually so simple! :-)

                  BKeyportB 1 Reply Last reply Reply Quote 0
                  • BKeyportB Offline
                    BKeyport Module Developer @juli2709
                    last edited by

                    @juli2709 most everything on the config is.

                    The "E" in "Javascript" stands for "Easy"

                    1 Reply Last reply Reply Quote 0
                    • L Offline
                      lxne Project Sponsor
                      last edited by

                      Two modules…
                      My MagicMirror is running on an OLED display, so I am using MMM-MagicMover and MMM-BurnIn to prevent screen damage.

                      and a complete suite…
                      MMM-GoogleAssistant and its components (Pages, Volume, Screen, Pir, Keyboard, TelegramBot, …) – priceless.

                      1 Reply Last reply Reply Quote 1
                      • B Offline
                        brentmatthews @brentmatthews
                        last edited by

                        @brentmatthews Hi Sam,

                        I seem to be missing something with KeyBindings as the arrow keys are not making the pages change. Would you mind advising if you have the time.

                        		{
                        			module: "MMM-Carousel",
                        			disabled: false,
                              			position: "bottom_bar", // Required only for navigation controls
                              			config: {
                                			transitionInterval: 0, //20000,
                                        		showPageIndicators: true,
                                        		showPageControls: true,
                                			ignoreModules: ['alert', 'updatenotification', 'MMM-KeyBindings'],
                        				mode: "slides",
                                			slides: {
                                  				main: ['clock', 'MMM-OpenWeatherForecast', 'MMM-WOTD', 'MMM-BackgroundSlideshow'],
                                  				"Slide 1": ['clock', 'MMM-OpenWeatherForecast', 'MMM-MyCalendar', 'MMM-TomTomCalculateRouteTraffic', 'MMM-MyWastePickup', 'MMM-BackgroundSlideshow'],
                        				},
                        				keyBindings: {
                        					enabled: true,
                        					map: {
                        						NextSlide: "ArrowRight",
                        						PrevSlide: "ArrowLeft",
                        					},
                        					mode: "DEFAULT"
                        		        		}
                        				},
                        		},
                        
                        S 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 1 / 2
                        • 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