MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. teitlebot
    3. Topics
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    T
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 13
    • Posts 97
    • Groups 0

    Topics

    • T

      CPU load per module

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      6
      0 Votes
      6 Posts
      1k Views
      S
      @teitlebot depends on the modules… mine hovers around 25% most of my modules update slowly calendar, weather
    • T

      Picture based on calendar

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      1
      0 Votes
      1 Posts
      555 Views
      T
      How can I get a specific picture to show based on a calendar day? Like if it’s July 4th show a flag…
    • T

      Is there a module that will show whats playing on all my google home minis?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      3
      0 Votes
      3 Posts
      979 Views
      T
      @Burn78 perfect. thanks
    • T

      Where did I park my car

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      2
      0 Votes
      2 Posts
      1k Views
      buzzkcB
      You probably can either show the map image or an iframe in MM. Use the querystring params to update the marker parameters… https://developers.google.com/maps/documentation/maps-static/dev-guide
    • T

      Funny mirror

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      1
      0 Votes
      1 Posts
      629 Views
      T
      I can’t believe nobody has made a funny or carnival mirror module yet. I understand you need a camera as well but I think it works be great. I wish I knew how to code this.
    • T

      Is there a way to temporarily disable a module?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      27
      0 Votes
      27 Posts
      11k Views
      wishmaster270W
      @BigDanT Hi, you need another module to get it work: MMM-ProfileSwitcher The idea is to define a “normal” class to which all modules do belong that will be displayed if motion is detected. The Slideshow will be in class “slideshow”. The Screensave module is configured to not shutoff the monitor but change to the “slideshow” profile. If SCREEN_ON is triggered the Screensave module will change back to the profile that was used before the screensave (in our case “nomal”). I updated the config example to do the job (but i could not test it at the moment): var config = { address: '0.0.0.0', electronOptions: {}, ipWhitelist: [], modules: [ //Screen on & off timer{ { module: 'MMM-ModuleScheduler', config: { notification_schedule: [ // TURN THE MONITOR/SCREEN ON AT 07:30 EVERY DAY { notification: 'SCREEN_ON', schedule: '00 07 * * *', payload: { 'forced': true } }, // TURN THE MONITOR/SCREEN OFF AT 22:30 EVERY DAY { notification: 'SCREEN_OFF', schedule: '30 22 * * *', payload: { 'forced': true } }, ] } }, { module: 'alert', config: {}, classes: 'normal' }, { module: 'updatenotification', position: 'top_bar', config: { ignoreModules: [] }, classes: 'normal' }, { module: 'clock', position: 'top_left', config: {}, classes: 'normal' }, // top Right Calenar { module: 'calendar', header: 'Family Calendar', position: 'top_left', config: { calendars: [{ symbol: 'calendar-check', url: 'https://calendar.google.com/calendar/ical/xxx.ics', } ], }, classes: 'normal' }, // Weather Section { module: 'currentweather', position: 'top_right', config: { location: 'UK', locationID: 'xxx', appid: 'xxx', }, classes: 'normal' }, { module: 'weatherforecast', position: 'top_right', header: 'Weather Forecast', config: { location: 'false', locationID: 'xxx', appid: 'xxx', }, classes: 'normal' }, //Screencast { module: 'MMM-Screencast', position: 'bottom_right', config: { position: 'center', height: 600, width: 800, castName: 'MagicMirror', }, classes: 'normal' }, //PLex Slideshow { module: 'MMM-PlexSlideshow', classes: 'Digital-Pictureframe', position: 'fullscreen_above', config: { plex: { hostname: '192.168.1.123', port: 32400, username: 'xxx@xxx.com', password: 'password', }, transitionImages: true, }, classes: 'slideshow' }, //MM Remote Control { module: 'MMM-Remote-Control', header: '', config: { customCommand: {}, customMenu: 'custom_menu.json', showModuleApiMenu: true, apiKey: '' } }, //News Headlines { module: 'newsfeed', position: 'top_bar', header: '', config: { feeds: [ { title: 'BBC News', url: 'http://feeds.bbci.co.uk/news/rss.xml' } ], startTags: [], endTags: [], prohibitedWords: [] }, classes: 'normal' }, { module: 'MMM-GPIO-Notifications', config: { '4': { gpio_state: 1, gpio_debounce: 0, delay: 30000, notifications: [{ notification: 'SCREEN_ON', payload: { 'forced': false } }, {} ] } } }, { module: 'MMM-Screen-Powersave-Notification', config: { delay: 60, hideInsteadShutoff: true, //do not shutoff the screen changeToProfile: "slideshow" //change to this profile instead of hiding the modules } }, { module: 'MMM-ViewNotifications', position: 'bottom_left', header: 'Notifications', config: { timeout: 0, format: '{time}: "{module}" sent "{notification}" with {payloadData}', // See below for configurable options includeModules: ["MMM-GPIO-Notifications", "MMM-Screen-Powersave-Notification"] }, classes: 'normal' }, { //https://github.com/tosti007/MMM-ProfileSwitcher module: "MMM-ProfileSwitcher", config: { defaultClass: "normal", ignoreModules: [ "MMM-ModuleScheduler", "MMM-Remote-Control", "MMM-GPIO-Notifications", ], } }, ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') { module.exports = config; }
    • T

      GPS location

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      4
      0 Votes
      4 Posts
      2k Views
      bheplerB
      Will do. It seems like all the components are there. One of those location clocks had a full walkthrough, including how to hook up the gears. The app for the phone exists, code examples exist, etc. The app includes a free tier of location processing & storage, so it seems like all of the hard stuff has already been done. I have one more mirror on my plate before I start work on my Weasley Clock. It should be fairly easy to turn that into a module. Should.
    • T

      Junior High Teaching Demonstration

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      2k Views
      cowboysdudeC
      As a teacher I can tell you several :) You can talk about technology… microprocessors and how many millions of commands they execute per millisecond, memory, how what used to fill a room you can now put on a simple little SD card. Science - flow of electricity and how it all works for computers, how small tech is allowing for things such as medicine, communications and even how to make your home ‘smarter’ and use less energy. Health, entertainment [movies, sports] For an exercise let them come up with an idea how to use tech to make their lives easier… I could go on and on but I think you get the jist ;)
    • T

      Anybody use Tinycam webserver with their magic mirror?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      5
      0 Votes
      5 Posts
      1k Views
      S
      @numb3rs sorry, no idea
    • T

      Lovelace

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Requests
      6
      0 Votes
      6 Posts
      3k Views
      C
      @teitlebot ah ok…maybe using an iframe of some kind?
    • T

      Cheapest Magic Mirror

      Watching Ignoring Scheduled Pinned Locked Moved Hardware
      8
      0 Votes
      8 Posts
      4k Views
      M
      Never got it to display anything. Page could not load or something like that. Not on the Pi0 and also not remotely on another PC. After many attemps and long hours of troubleshooting and reading I finally gave up on it. I really would love to get it working though as I’d like to make another cheap mirror for my brother as a present. Still have a two-way-mirror lying around…
    • T

      Usb mic changing device number randomly

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      1
      0 Votes
      1 Posts
      564 Views
      T
      I have this strange issue where my pi changes what device number my USB mic is using randomly. This of course means that the audio stops working after a reboot until I modify the file again. Any ideas what can be causing this. I dont have anything else plugged in to usb ports.
    • T

      How can I add this script text to my screen

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Discussion
      13
      0 Votes
      13 Posts
      5k Views
      T
      @idoodler i thought it would be simple because hebcal provides a script with that information
    • 1 / 1