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

Touchscreen Family Dashboard

Scheduled Pinned Locked Moved Show your Mirror
touchscreentouch
48 Posts 23 Posters 27.2k Views 39 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.
  • T Offline
    tjat
    last edited by Sep 19, 2023, 2:15 AM

    Dashboard video

    I recently completed the software portion of my “Magic Mirror” that is really a touchscreen dashboard for the family to use, running on a Raspberry Pi4. I wanted to allow for family members to add/edit/delete events from the screen so we could replace our messy paper calendar. As shown, the dashboard also provides local weather, family photos, and commute times for both adults in the household. The next step is to build the physical housing around the screen, likely in the form of extending the bookcase it’s currently resting on. The finished product will be a built in.

    I’m not a programmer, but with the help of ChatGPT was able to develop a few custom modules to interact with others from the community. The most complex one I needed to develop was the integration with the Google Calendar API which was built entirely from scratch.

    Modules used:

    • MMM-DarkSkyForecast: Updated with PirateWeather
    • MMM-GoogleCalendar: Readonly Access to my Google Calendar via API
    • MMM-GooglePhotos
    • MMM-systemtemperature
    • MMM-Remote-Control
    • MMM-CalendarExt3: Heavy CSS adjustments along with a small update to add a transparent button in each date cell that brings open the add event dialog box.

    Custom Modules

    • MMM-Keypress: Simple swipe module allowing me to advance the calendar 1-10 months in either direction
    • MMM-TravelTimes: Pulls Google Traffic times for a drive to one location and a combination drive to train station/train ride to another
    • MMM-SimpleKeyboard: Integrates the public-use SimpleKeyboard into the MagicMirror
    • MMM-GoogleCalendarEventAdder: Provides Add/Edit/Delete functionality to our Google Calendar via API
    L H T 3 Replies Last reply Sep 19, 2023, 6:54 AM Reply Quote 5
    • L Offline
      lavolp3 Module Developer @tjat
      last edited by Sep 19, 2023, 6:54 AM

      @tjat

      Hello tjat, that’s really cool.

      Have you used ChatGPT to program the complete modules for you? Or did you just use it for help with Javascript?
      I had provided a module called MMM-Keyboard a few years ago, which includes simplekeyboard and can interact with other modules. Just so you know if you need something else, I’m happy to work with you on including it in my module.

      How to troubleshoot modules
      MMM-soccer v2, MMM-AVStock

      T 1 Reply Last reply Sep 19, 2023, 11:28 AM Reply Quote 0
      • T Offline
        tjat @lavolp3
        last edited by Sep 19, 2023, 11:28 AM

        @lavolp3

        Thanks. I had zero background in javascript or CSS so started off with prompts like “Provide the full code for a magic mirror module in javascript that can add, edit, and delete events from my Google Calendar”. I did pay for the premium subscription, which gives you access to the more advanced models, which certainly helped. It returns both an initial module file and node_helper if needed. It was a very iterative process early on - the initial code would certainly have some errors in it, but I was able to get through it by pasting errors from the developer console back into Chat GPT and/or adding detailed logging statements to the code itself to see exactly what it was doing.

        The most challenging part was getting the Google API set up correctly. I suspect Google changed some aspects after ChatGPTs cutoff date. In some cases, I was able to have it scan the developer docs to give me updated instructions.

        Realized as well that I forgot an actual screenshot in my OP.
        dashboard screenshot.jpg

        S 1 Reply Last reply Oct 5, 2024, 3:32 PM Reply Quote 8
        • R Offline
          rpp
          last edited by rpp Sep 21, 2023, 10:18 PM Sep 21, 2023, 10:16 PM

          Anyway you can share the code from your custom modules?

          I’m curious to see it and see it.

          And just curious what type of screen are you using?

          T 1 Reply Last reply Sep 23, 2023, 2:51 PM Reply Quote 0
          • T Offline
            tjat @rpp
            last edited by tjat Sep 23, 2023, 2:54 PM Sep 23, 2023, 2:51 PM

            @rpp
            Yeah, here’s a link to my git. I’m not a coder so I’m assuming I’m missing some best practices but each module should be accessible. They’re certainly highly customized for my specific classes, icons, etc.
            https://github.com/tjat84

            My screen is an ASUS BE24ECSBT.

            M M 2 Replies Last reply Sep 24, 2023, 9:21 AM Reply Quote 1
            • S sdetweil referenced this topic on Sep 23, 2023, 4:47 PM
            • H Offline
              hengy @tjat
              last edited by Sep 24, 2023, 3:50 AM

              @tjat very impressive. Especially about the ChatGPT aspect.

              1 Reply Last reply Reply Quote 0
              • M Offline
                maxz1818 @tjat
                last edited by Sep 24, 2023, 9:21 AM

                @tjat this is exactly what I’ve been looking to build. Can’t wait to dive into what you’ve created.

                1 Reply Last reply Reply Quote 0
                • T Offline
                  tjat
                  last edited by Oct 1, 2023, 8:13 PM

                  Some fun updates made over the past 2 weeks, all in my git for anyone interested. Code might be specific to my use, but could be adaptable: https://github.com/tjat84

                  MMM-ScreenSaver: After a period of inactivity, this module pulls the photo that would otherwise appear in the MMM-GooglePhotos module and bounces it around the darkened screen. Will turn off when the touchscreen is pressed.

                  MMM-SystemOptions: Displays a drop-down option menu that allows the user to send MMM-RemoteControl notifications straight from the dashboard (e.g refresh screen, minimize window, reboot, shut down, and activate screensaver if available)

                  MMM-InfoPage: Loads as a collapsed module in the bottom left of the screen. The user then swipes up to expand and displays information my category. I’m using it to display phone numbers of key contacts, town services, and my kid’s login information for school apps. A few pictures below

                  collapsed.png

                  expanded.png

                  M 1 Reply Last reply Oct 2, 2023, 7:06 PM Reply Quote 0
                  • M Offline
                    MM-JRH @tjat
                    last edited by Oct 2, 2023, 7:06 PM

                    @tjat This is awesome. Following closely and going to start trying to adapt some of this to my project.

                    I was getting hung up on modifying the existing Google Maps Traffic app with, like you, no java or CSS background :)

                    1 Reply Last reply Reply Quote 0
                    • W Offline
                      wperry530
                      last edited by Jan 19, 2024, 9:04 AM

                      @tjat

                      How did you get it to pull ten months? I tried using your modules, but I lost the ability to pull the pop up. I figured out how to modify the original module you forked from (if that’s the right terminology) to be able to register the key presses, but when I do, it does not progress to the next week.

                      Any help is appreciated!

                      T 1 Reply Last reply Jan 21, 2024, 12:02 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 1 / 5
                      • 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