A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • MMM-SpeedTest Fails to Install

    4
    0 Votes
    4 Posts
    593 Views
    mumblebajM
    @Bugsounet Updated and it now works fine. Thanks @Bugsounet
  • CalendarExt2 and GoogleTasks

    mmm-calendarext2 mmm-googletasks
    1
    1 Votes
    1 Posts
    511 Views
    V
    Wasn’t sure where to post because my issue involves two different modules, MMM-CalendarExt2 and MMM-GoogleTasks. I have my MagicMirror setup correctly and can get CalendarExt2 to show but when I add the GoogleTasks module, the Calendarext2 disappears while GoogleTasks shows up no problem. If I comment out GoogleTasks CalendarExt2 shows up again. I’ve tried changing the order in config.js, changing the position on screen, reducing the number of calendars, and always the same behavior. Anyone have any idea of what the conflict might be?
  • MMM-ISS-Live

    2
    0 Votes
    2 Posts
    795 Views
    T
    @Dropzone1969 said in MMM-ISS-Live: I have this module working well. The only issue is when the video is playing it tells me that my browser is out of date. What browser is it and how do I update it? Thank you for your help. I hope by the end of next week I will be able to post a picture of my project. it’s the Chromium web browser, install Firefox if necessary sudo apt-get update or sudo apt-cache policy chromium-browser
  • MMM-LocalTemperature doesn't work :(

    6
    0 Votes
    6 Posts
    2k Views
    S
    @Ipsopedion said in MMM-LocalTemperature doesn't work :(: The module seems to load forever That means the default message was put up while the module is waiting for data… but hasn’t yet received it Can u should the output where u start magic mirror? Either the terminal window for npm start, Or if using pm2, the output of pm2 logs --lines=???, where ??? Is a number, defaults to 15
  • 0 Votes
    3 Posts
    2k Views
    A
    Also for https://github.com/jharttech/MMM-weatherforecast/pull/8
  • Unable to put a compliment weekly.

    2
    0 Votes
    2 Posts
    2k Views
    A
    Hi @elwonner It’s doable with minor code change. Below is the code you need to achieve the same. Compliments declaration compliments: { anytime: ["Hey there sexy!"], morning: ["Good morning, handsome!", "Enjoy your day!", "How was your sleep?"], afternoon: ["Hello, beauty!", "You look sexy!", "Looking good today!"], evening: ["Wow, you look hot!", "You look nice!", "Hi, sexy!"], "....-01-01": ["Happy new year!"], "Monday": ["Hello Monday !"], "Friday": ["Thank God, It's Friday !"] }, ComplimentsArray function complimentArray: function () { var hour = moment().hour(); var date = this.config.mockDate ? this.config.mockDate : moment().format("YYYY-MM-DD"); var day = this.config.mockDay ? this.config.mockDay : moment().format('dddd'); //Add this line var compliments; ------ removed some code for brevity, do not actually remove it ! for (var entry in this.config.compliments) { if (new RegExp(entry).test(date) || new RegExp(entry).test(day)) { //Change this line, Note the second check for day compliments.push.apply(compliments, this.config.compliments[entry]); } } Output should be as below [image: 1607363066485-bdb5ce80-c904-444d-bd35-31723a0e1ed5-image.png] [image: 1607363535887-77500428-e8a5-46ff-8613-1b5e09a601b5-image.png] – Ashish
  • Re: MMM-Remote Control and MMM Random You Tube Player

    1
    0 Votes
    1 Posts
    167 Views
    S
    Re: MMM-Remote Control and MMM Random You Tube Player FYI. I established that the problem was not to do with the modules but with youtube. As soon as the address is set to 0.0.0.0 it automatically blocks some videos. Other Videos are playable, it’s just a matter of trial and error to find out which ones. Cheers Simon
  • Anyone know how to use MMM-ShairportMetadata?

    Unsolved
    16
    0 Votes
    16 Posts
    6k Views
    M
    @jmartin1009 did you ever figure this out? Running into some trouble as well
  • Unable to start magic mirror via flask-ask intent

    3
    0 Votes
    3 Posts
    422 Views
    A
    not running as root - [2020-12-07 11:53:51.413] [ERROR] Whoops! There was an uncaught exception… [2020-12-07 11:53:51.414] [ERROR] Error [ERR_STREAM_DESTROYED]: Cannot call write after a stream was destroyed at doWrite (_stream_writable.js:413:19) at writeOrBuffer (_stream_writable.js:401:5) at Socket.Writable.write (_stream_writable.js:301:11) at Object.con. [as log] (/home/pi/MagicMirror/node_modules/console-stamp/main.js:150:46) at App. (/home/pi/MagicMirror/js/electron.js:93:6) at App.emit (events.js:205:15) [2020-12-07 11:53:51.415] [ERROR] MagicMirror will not quit, but it might be a good idea to check why this happened. Maybe no internet connection? [2020-12-07 11:53:51.416] [ERROR] If you think this really is an issue, please open an issue on GitHub: https://github.com/MichMich/MagicMirror/issues
  • Now I'm getting somewhere, HA turns screen on and off :-)

    Moved
    3
    1 Votes
    3 Posts
    1k Views
    cowboysdudeC
    @fribse Nice job! I’m strictly using home assistant. Not tied to Magic Mirror at all. Home Assistant is a cool thing and I have it running my entire house :)
  • MMM-GooglePhotos freezes the photos after some time

    1
    0 Votes
    1 Posts
    355 Views
    A
    Hi, my goolge photos module work fine when MM restarted but then after a few hours it stops changing the photos. Restart fixes it but it is super inconvinient. I wonder if this is known issue and if so how to fix it?
  • default compliments

    3
    0 Votes
    3 Posts
    743 Views
    M
    @ashishtank fantastic! that’s correct. Thanks
  • Default Weather module not loading and no error showing.

    31
    0 Votes
    31 Posts
    44k Views
    M
    I know this is old but…my weather wasnt loading. I was trying to use the “forecast” option. Figured out (despite what @Mykle1 said above) that it does work with API keys but I needed to changed weatherEndpoint: in the weather.js file apiKey: "YOUR-API-KEY", apiSecret: "", apiVersion: "2.5", apiBase: "https://api.openweathermap.org/data/", // TODO: this should not be part of the weather.js $ weatherEndpoint: "/forecast", I had it set to forecast in the config/config.js (below) but that wasnt enough. After I changed the weatherEndpoint, it worked. The { module: "weather", position: "bottom_right", config: { type: "forecast" } }, Hope this helps someone. [image: 1607022494767-ddc1edca-508f-483c-840f-9b12c4ac13a6-image.png]
  • MMM-remotecontrol unable to turn on monitor

    1
    0 Votes
    1 Posts
    318 Views
    S
    Hi, I am totally new at magic mirror and coding. I have been learning along the way. However, I can not seem to figure out how to turn on my monitor with this module. It only gives me a blank screen. I have searched and multiple expert said to change tvservice to vcgencmd, but I don’t know where to change it. Thank you very much!!
  • MMM-NetworkScanner (spitzlbergerj) Keep Alive

    2
    0 Votes
    2 Posts
    491 Views
    J
    Disregard the above issue. I solved it by using the fork by leveneg. Happy days, all working as it should :)
  • MMM-WeatherChart use of Chartjs

    7
    0 Votes
    7 Posts
    1k Views
    S
    @ankonaskiff17 see https://forum.magicmirror.builders/topic/6808/css-101-getting-started-with-css-and-understanding-how-css-works?_=1606945574374 the chartjs styles are not exposed as css elements They have attributes on the chart object to do the same
  • Fault on WeatherForcast default module.

    1
    0 Votes
    1 Posts
    203 Views
    ankonaskiff17A
    I keep seeing this fault on the developer Tools console. I am using the Openweathermap free tier and it has a limit on the number of calls that can be made per day. I sent Openweathermaps a question regarding the fault and their reply was as follows. "I would recommend you to contact the software developer for details. If the software tries to use the Daily API endpoint, it will not get access, since it is not available for free users. Any ideas on how to clear this error? Or best to ignore until the new default weather module is ready for general usage. Here is screen capture of fault.[image: 1606826893126-error.jpg]
  • MMM-Remote Control and MMM Random You Tube Player

    1
    0 Votes
    1 Posts
    219 Views
    S
    I installed MMM Remote Control and have been able to access it with my mobile. Unfortunately it disrupts the Youtube playlist when I change the config file to address: 0.0.0.0. The Youtube Module cannot access the playlist. When I uncomment the address line: //0.0.0.0, the Youtube Module works again. Unfortunately the Remote Control Module then doesn’t work. There seems to be some sort of conflict between the two modules in this regard. I have tried different options for the address line: “::” “ip address” and so on. Nothing has worked just yet. Does anyone have any suggestions for a workaround?
  • 0 Votes
    4 Posts
    2k Views
    S
    @Edohvin if u open a browser on the mirror system. Can u put your ics url in the browser and download the ics file? There are public and secret urls that work
  • Unknown Error

    Moved
    3
    0 Votes
    3 Posts
    496 Views
    B
    There’s definitely something going on with your config.js file. Looking at the code, it’s not picking up the focus_on entry that you’ve supplied. Try to post the relevant section of your config.js again. Check the markdown options for how to post blocks of code. It’s probably something trivial, but without a good look into your config, I don’t think we can help you.