A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • Newsfeed : How to keep "showDescription" after leaving the full article?

    1
    0 Votes
    1 Posts
    934 Views
    MrCoffeeM
    Hi, I would like to see the description of the news in the newsfeed all the time. So, like mentioned in the options, I changed the “showDescription = false” in the newsfeed.js to “true”. It works fine. I can see the description of every article without doing anything, even when the articles update. The problem is when I use the command “ARTICLE_MORE_DETAILS” to open the full article. It works like a charm, but when I close the full article I use the command “ARTICLE_LESS_DETAILS”. It goes back to the newsfeed but unfortunately without showing the descriptions anymore. I only see the headlines (like “showDescription = false” although “true” is still set of course). If I use the command “ARTICLE_MORE_DETAILS” again, the description opens, but the article is freezed - like coded. Do you have any idea, how I can leave the full article going back to the “show-description-version”? Or instead, how can I remove the freeze? Thanks a lot. Greetings Mr.Coffee
  • MMM-SimpleLogo remove/disable title of module

    Moved
    4
    0 Votes
    4 Posts
    3k Views
    Mykle1M
    @zdenek You’re welcome, mate. You could create an issue, letting the author know that his README.md file should be updated to show this information. In this way, you’re helping someone else in the future. Pretty cool, no?
  • 1 Votes
    2 Posts
    2k Views
    N
    @kj3rra Not sure that @strawberry-3.141 will agree with the approach, but you can actually achieve the same thing with just CSS animations (and avoid creating a module). Try either the following in your css/custom.css file: /* this will cause the image to fade out for about 2 seconds every 2 minutes */ body{ animation: fading 60s infinite alternate; } @keyframes fading { 0%, 98% { opacity: 1; } 100% { opacity: 0; } } - or - /* this will cause the image to slide down, across 10px after 30 seconds, for 30 seconds, then back up */ body{ animation: slide 60s linear infinite alternate;} @keyframes slide { 0%, 49% { transform: translate(0, 0); } 50%, 100% { transform: translate(10px, 10px); } } You can adjust the time value (i.e. 60s) to more/less as you like (but be careful, 2% of one hour is over 2 minutes). You can also adjust the percentages, and use decimal percents, like 0.5% if needed. CSS 2D transforms should not take too much memory or cause issues on an RPi. I assume that Chromium/Electron supports CSS 3 animations. YMMV.
  • Alexa (MMOTW) working!

    3
    1 Votes
    3 Posts
    3k Views
    J
    “This was using the already existing repo Mirror Mirror On The Wall, with the associated skill, which was why I hadn’t posted the skill itself. This had very kindly been developed by joanaz in the past, but the instructions have not been updated in a while so it’s somewhat more challenging than I had anticipated to get through.” Sorry, wrote this without seeing who it was that posted. Basically, I don’t think this requires new code per se, but would just need new instructions (ReadMe), and for me at least, a lot of css-ing.
  • Config.js not working

    4
    0 Votes
    4 Posts
    2k Views
    N
    @dandrea30 there are two commas missing { module: 'MMM-Traffic', position: 'bottom_right', classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name config: { api_key: 'your_apikey_here', mode: 'driving', origin: '4 Pennsylvania Plaza, New York, NY 10001', destination: '1 MetLife Stadium Dr, East Rutherford, NJ 07073', mon_destination: '116th St & Broadway, New York, NY 10027', fri_destination: '1 E 161st St, Bronx, NY 10451', arrival_time: '0800', //optional, but needs to be in 24 hour time if used. route_name: 'Home to Work', changeColor: true, showGreen: false, limitYellow: 5, //Greater than 5% of journey time due to traffic limitRed: 20, //Greater than 20% of journey time due to traffic traffic_model: 'pessimistic', interval: 120000 //2 minutes } },
  • MMM-SwissCommute Position of multiple Modules

    1
    1
    0 Votes
    1 Posts
    958 Views
    I
    I successfully installed this module and it works fine. I want to use this module several times for several connections and get all the modules in the top right corner one below another. My code looks like this: { module: 'MMM-SwissCommute', position: 'top_right', header: 'Winterthur - Zurich', config: { from: 'Winterthur', // Start train station to: 'Eschlikon', // Destination station maximumEntries: 2, // Max departures displayed minWalkingTime: 10, // Minimum time to get to the station } }, { module: 'MMM-SwissCommute', position: 'top_right', header: 'Winterthur - Lausanne', config: { from: 'Winterthur', // Start train station to: 'Lausanne', // Destination station maximumEntries: 2, // Max departures displayed minWalkingTime: 10 // Minimum time to get to the station } }, where I just take the module one after another. The outcome looks like this, where the modules are placed next to each other. [image: 1525171431008-1524927276920-screen_mm.png] Does anybode know how to fix this? Thanks
  • MMM-Wunderground iconset doesn't work

    1
    0 Votes
    1 Posts
    858 Views
    K
    Hi there, My mirror is up to date. MMM-Wunderground works well except iconset. My config is below. But icons are still flaticons. [image: Screenshot%202018-04-29%2003.32.31.png] Any idea? { module: 'MMM-WunderGround', position: 'top_right', config: { apikey: 'XXXXXXXXXX', pws: 'Istanbul', hourly: '0', fctext: '1', fcdaycount: "3", fcdaystart: "0", hourlyinterval: "3", hourlycount: "2", alerttime: 10000, alerttruncatestring: "english:", roundTmpDecs: 1, UseCardinals: 0, layout: "horizontal", sysstat: 0, iconset: "VCloudsWeatherIcons" } },
  • MMM-ModuleScheduler stops working if MMM-PIR is active

    4
    0 Votes
    4 Posts
    1k Views
    E
    Don’t forget to check the error logs and dmesg.
  • ERROR IN STARTING MAGIC MIRROR IN PI ZERO

    pi0 error help
    2
    0 Votes
    2 Posts
    2k Views
    bheplerB
    A couple things. First, please use the markdown features of the forum to make your code easier to read. There’s a nice tutorial on Git. Secondly, you need to run the npm install command in the Magic Mirror folder. So try this: cd ~/MagicMirror npm install
  • 0 Votes
    3 Posts
    2k Views
    G
    I got it working! Thanks so much. I had not heard of jshint yet. Thanks for the tip
  • default newsfeed and iframe

    6
    0 Votes
    6 Posts
    2k Views
    O
    I have not yet. Reading the newsfeed readme it looks like it may have to do with x-frame options of the source. I have to confess though I have no idea where to view a site’s x-frame options header or how to find news feeds with x-frame options that are favorable for embedding into an iframe.
  • MMM-Todoist Help

    1
    0 Votes
    1 Posts
    914 Views
    P
    I am having a little trouble getting this module to work. I’ve tried multiple different projects and access tokens but neither have worked. Any help is appreciated. { module: 'MMM-Todoist', position: 'middle_center', // This can be any of the regions. Best results in left or right regions. header: 'To Do', // This is optional config: { // See 'Configuration options' for more information. accessToken: 'xxxxxxxxxxxxxxxx', maximumEntries: 60, updateInterval: 10*60*1000, // Update every 10 minutes projects: [ xxxxxxxxx ], fade: false } },
  • Need Help with MMM-CalendarExt

    1
    2
    0 Votes
    1 Posts
    1k Views
    C
    Hi All, First Off a big thanks to authors of Magic Mirror, all those who have developed modules, and those who have assisted everyone (including noobs like me). I’m trying to get MMM-CalendarExt to work in either weekly or monthly mode, I believe I have all the mechanics down as it looks like I am getting things in the right spots etc. But am having an issue with getting the calendar to render properly. I’m trying to use either the Month view or the weeks view. Both with the same result, of overlaying most or all of the screen. I have even tried with just the weeks view and only 1 week, with most of the screen covered by the calendar. I was able to get the 28 day example found somewhere in the forums to work (at least it behaves like I think it should) and I think the month or week should. The two pictures below are of the 28 day version, and the 4 week version (which is messed up). I’ve tried to modify custom.css and to no avail. Can someone point me in the direction of where I am going askew? PS. I am looking at the weeks or month method as this is for a senior with memory issues, and using the 28 days takes away from the consistency of a normal calendar. Working? 28 days:[image: 1524624566832-28day-resized.jpg] Messed up weekly: [image: 1524624590249-weeks-resized.jpg] …Thanks
  • Current Weather still not working properly

    4
    0 Votes
    4 Posts
    2k Views
    Mykle1M
    @ryanvox Until the problems with the weather module get sorted out you could always try a 3rd party weather module. Also, you can see what else is available to you here> https://github.com/MichMich/MagicMirror/wiki/3rd-party-modules
  • MMM-voice for Brits!

    7
    0 Votes
    7 Posts
    4k Views
    cowboysdudeC
    Can I getta pencil? LOL
  • MMM-Memo: How to send Http request?

    2
    0 Votes
    2 Posts
    2k Views
    PatexP
    Are you able to connect to your mirror (display it’s content in the browser) by going to http://MIRROR_IP:MIRROR_PORT ? If this is not possible your config file does not allow external devices to access the mirror. You might need to alter your ipWhitelist in the config file and be sure that the address field is also set accordingly.
  • setInterval for multiple API requests

    5
    0 Votes
    5 Posts
    3k Views
    P
    @strawberry-3.141 - thank you for the approach. This is working out beautifully.
  • UI/Data Caching

    5
    0 Votes
    5 Posts
    2k Views
    P
    @E3V3A that worked perfectly. Thank you for sharing!
  • Can't get bus data to show

    3
    0 Votes
    3 Posts
    1k Views
    M
    Thank you for that help! I have got it working now thankfully, however I am still not sure how to get 2 bus stops to show now. Pi’s are quite fun to play with, I shall have a little play about with it. Thanks again :)
  • Das Modul "current weather" fehlt

    Locked
    1
    0 Votes
    1 Posts
    711 Views
    M
    Das “Corrent Weather” Modul wie auch das “Weather Forecast” Modul wird bei mit nicht angezeigt. Ich habe mir die Standortdaten und die API besorgt aber ohne Erfolg. Das Modul ist ja bereits vorinstalliert. Was mache ich falsch?