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

    Topics

    • R

      Strange problem with the default calendar modul

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      3
      0 Votes
      3 Posts
      1k Views
      J
      I have the same issue, a repeating event will show up fine but if I change the time of future events or just delete one it has issues displaying.
    • R

      problem with MMM-Instagram

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      1
      0 Votes
      1 Posts
      1k Views
      R
      Hi, after a restart of MM the modul MMM-Instagram is not displaying. In remote control i get this message: This module was hidden by another module, it can not be shown. I choose : Do it anyway. Its working. When changing the profile always the same. How can I find the responsible module or what is the reason for the problem. Here my config: /* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. */ var config = { "port": 8080, "language": "de", "timeFormat": 24, "units": "metric", "modules": [ { "module": "alert" }, { "module": "MMM-SystemStats", "header": "System Status", "position": "top_left", "config": { "updateInterval": 10000, "animationSpeed": 0, "align": "left" }, "classes": "default everyone" }, { "module": "MMM-ProfileSwitcher", "title": false, "config": { "useLockStrings": true, ignoreModules: ["alert", "updatenotification", "MMM-Instagram"], "title": false, enterMessages: { "Ralf Dana": "Wie geht's, %profile%?", "Dana": "Hallo mein xxxx" }, leaveMessages: false, timers: { // When Ralf is selected swap to Dana after 30 seconds "Ralf": { profile: "Dana", time: 30 * 1000 } } } }, { "module": "MMM-DHT22", "header": "Außen", "position": "top_left", "config": { "sensorPIN": 23, "updateInterval": 0.5 }, "classes": "default everyone" }, { "module": "MMM-TouchNavigation", "position": "bottom_left", "config": { picturePlacement: "right", minWidth: "40px", direction: "row", "buttons": { "Ralf": { img: "http://xxxx.jpg", "width": "60", height: "60" }, "Dana": { img: "http://xxxx.jpg", "width": "60", height: "60" } } }, "classes": "default everyone" }, { "module": "MMM-newsfeedtouch", "position": "bottom_bar", "config": { "feeds": [ { "title": "n-tv", "url": "http://www.n-tv.de/rss" }, { "title": "Polizei DD", "url": "https://www.polizei.sachsen.de/de/presse_rss_pdd.xml" }, { "title": "SZ", "url": "http://www.sz-online.de/Sachsen.rss" } ] }, "classes": "default everyone" }, { "module": "MMM-TouchPlayerBasic", "position": "bottom_center", "config": { "stations": [ "RD dresden", "HR hitradio", "MDR jumpradio", "PSR psr", "RSA rsa", "ARD ard" ] }, "classes": "default everyone" }, { "module": "MMM-PIR-Sensor", "config": {} }, { "module": "MMM-Podcast", "config": {}, "classes": "default everyone" }, { "module": "MMM-Admin-Interface" }, { "module": "MMM-dht22", "position": "top_left", "config": { "header": "Küche", "tempUnit": "celsius", "dht22gpio": 22, "dht22util": "sudo /home/pi/bin/dht22", "updateInterval": 10000, "animationSpeed": 0 }, "classes": "default everyone" }, { "module": "MMM-Remote-Control" }, { "module": "MMM-Instagram", "position": "top_center", "config": { "access_token": "xxxx", "count": 500, "min_timestamp": 0, "animationSpeed": 2500, "updateInterval": 60000 }, "classes": "default everyone" }, { "module": "updatenotification", "position": "top_left", "config": {}, "classes": "default everyone" }, { "module": "clock", "position": "top_left", "classes": "default everyone" }, { "module": "calendar", "header": "Termine", "position": "top_left", "config": { "calendars": [ { "symbol": "female", "url": "https://xxxx.ics" }, { "symbol": "male", "url": "https://xxxx.ics" } ] }, "classes": "default everyone" }, { "module": "currentweather", "header": "Wetter aktuell", "position": "top_right", "config": { "location": "Dresden", "locationID": "", "appid": "xxxx" }, "classes": "default everyone" }, { "module": "weatherforecast", "header": "Wetter Vorschau", "position": "top_right", "config": { "location": "Dresden", "locationID": "", "appid": "xxxx" }, "classes": "default everyone" }, { "module": "MMM-Wunderlist", "header": "todo Liste", "position": "top_right", "config": { "accessToken": "xxxx", "clientID": "xxxx", "lists": [ "TODO" ], "order": "normal", "maximumEntries": 5, "interval": "10" }, "classes": "default everyone" }, { "module": "MMM-DVB", "position": "top_right", "config": { "stopName": "xxxx" }, "classes": "default everyone" }, { "module": "MMM-DWD-WarnWeather", "header": "Wetterwarnungen", "position": "top_right", "config": { "region": "Stadt Dresden", "changeColor": true, "interval": 600000, "loadingText": "Warnungen werden geladen...", "noWarningText": "Keine Wetterwarnungen" }, "classes": "default everyone" } ], "ipWhitelist": [ "127.0.0.1", "xxxx", "::ffff:xxxx", "::1" ] }; /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== 'undefined') {module.exports = config;} Thank you for any help. Ralf
    • R

      i want to combine MMM-TouchPlayerBasic and MMM-Podcast, until now without succes

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      1
      0 Votes
      1 Posts
      940 Views
      R
      I have both modules installed. MMM-TouchPlayerBasic and MMM-Podcast. Everything works perfectly. Now I would like to use MMM podcast via touchscreen without button. I have added a picture and the scriptfile to MMM-TouchPlayerBasic. the script (ard.sh): sudo omxplayer --vol -3000 /home/pi/MagicMirror/modules/MMM-Podcast/video.mp4 Then made executable: chmod +x /home/pi/MagicMirror/modules/MMM-TouchPlayerBasic/scriptfiles/ard.sh Restart rpi. When I press the touchbutton nothing happens. The MMM-TouchPlayerBasic ( each radiostation) himself is still working perfekt, If I write the same command in the cmd window via ssh the “Tagesschau” video is running, overlapping the MM, with sound, everything perfekt. Why it does not work in the module? Maybe it has something to do with the permission rights? Many thanks already in advance for your help.
    • 1 / 1