A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
  • keyboard /carousel

    1
    0 Votes
    1 Posts
    291 Views
    R
    code_text ```{ module: 'MMM-Carousel', position: 'bottom_bar', // Required only for navigation controls config: { transitionInterval: 10000, ignoreModules: ['clock', 'alert'], mode: 'slides', showPageIndicators: true, showPageControls: true, slides: { main: ['calendar', 'MMM-PLOW', 'MMM-Tools', 'newsfeed', 'MMM-TuyaSL', 'MMM-NowPlayingOnSpotify',], "slide 2":['newsfeed', 'MMM-PLOW', 'MMM-TuyaSL',], }, keyBindings: { enabled: true, map: { NextSlide: "ArrowRight", PrevSlide: "ArrowLeft", Slide0: "Home" }, mode: "DEFAULT" } } }, { module: 'MMM-KeyBindings', config: { evdev: { enabled: false }, enableKeyboard: true, } },``` code_text can anyone explain to me why my keyboard and mouse are not working thx
  • 0 Votes
    3 Posts
    515 Views
    M
    @sdetweil can you give me a screenshot where I find the solved-button? Edit: Sorry, first I had to mark the question as question. Than there was the solved button. Well, this is kind of hidden :-)
  • Changing the colour of all text on screen

    21
    1
    0 Votes
    21 Posts
    7k Views
    B
    @lavolp3 You, my friend, are AWESOME! To be honest, I just expected to giving a link, where i could read it all, like the w3schools.com. You really went beyond my expectations, on how much work you would put into helping strangers. I will try that. Thank you for your big help!
  • Python script streaming ideas

    1
    1
    0 Votes
    1 Posts
    315 Views
    E
    Hello community! I have a python script that runs a detection algorithm. When it is ran, it shows a webcamfeed (using cv2) with drawings (detection boxes) drawn on there aswell. Now, I want my mirror to be able to start this python script AND also show the webcam feed (with the bounding boxes) on my mirror! Anyone knows some ideas how to tackle this problem? I included a picture to give you an idea what I mean with webcam feed and bounding boxes! (I am using a jetson Nano, but that shouldn’t be important for this question) [image: 1603273855356-a1c5adaa-ea23-4e87-ac67-7ab3a841f362-image.png] Any brainstorming is appreciated, thanks!
  • Black Screen... I have not upgraded the MM2 system software.

    12
    0 Votes
    12 Posts
    2k Views
    S
    @earnestrichards cool… so… try running server mode npm start server and then use chromium browser on the pi4 i have a config that does all this , i tried to have this as the default setup so one could chnage in config.js and voila… but it wasn’t accepted (I do this on pi 0 as electron doesn’t run there anymore) down load this file to MagicMirror folder https://raw.githubusercontent.com/sdetweil/MagicMirror_scripts/master/run-start.sh make it executable chmod +x run-start.sh edit package. json copy the start line change the word “start” to “start1” looks like this "start1": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js", this saves the old start command change the right side of the new start to “./run-start,sh” looks like this "start":"./run-start.sh", edit config.js and uncomment this line // serverOnly: true/false/"local" , set to local so it looks like this serverOnly: "local" , now npm start or pm2 start will launch the MM in server mode (no ui) and then launch chromium-browser over it. mac still talks to server if u need to go back, edit config.js, change serverOnly to false, then npm run start1
  • MMM-PlexSlideshow - any ways to use a plex Auth Token ?

    1
    0 Votes
    1 Posts
    325 Views
    B
    Hi, Is there anyway for MMM-PlexSlideshow to use an Auth token rather than username and password to stop the alert email whenever the magic mirror is rebooted / app restarted ? Cheers D.
  • screen rotate & now playing spotify

    1
    0 Votes
    1 Posts
    233 Views
    R
    I have MNM-Now Playing Spotify installed and it works normally, but when I turn my screen the cover becomes almost full screen, normally the cover is only about 10x10 cm does anyone have a solution? sometimes the bulbs of the tuya module are also duplicated
  • MMM-RottenTomatoes displays awaiting update

    Unsolved
    25
    0 Votes
    25 Posts
    10k Views
    lavolp3L
    @lavolp3 I tried to dig a bit deeper into the rt-scraper module again and it seems the references for the elements are all different from the current page. The output of the module is empty and therefore we only see the headlines and no content. I don’t think I’ll be able to fix it.
  • Show MirrorContent in other browsers

    3
    0 Votes
    3 Posts
    652 Views
    V
    Works Thanks a lot
  • Wrong dates on the calendar

    4
    1
    0 Votes
    4 Posts
    752 Views
    S
    @majdzik84 send me a little ics file, one event. the ics is just text, so u can download and edit, or post the text of the event here. I am actively trying to fix calendar once and for all send to my email, same userid as here on gmail there were lots of problems with recurring and timezones. most fixed in 2.13
  • MMM-Alexacontrol and MMM-Selfieshot question

    1
    0 Votes
    1 Posts
    213 Views
    T
    Hi, first of all, a huge compliment to all developers for this great project. Unfortunately I am not that talented, but in the last months I have built a really excellent running mirror. Unfortunately, I am now encountering a problem where I really don’t know how to realize it. I would like to open the MMM-Selfieshot module via my echo plus and let a selfie shoot by command. The Pages module already allows me to open the individual pages, but how can I get my Echo Plus to shoot a selfie by command? As far as I understood, this is done via notification, but here I lack the knowledge. Could one of you please help me to understand how this could work in principle?I have ordered a camera (original PiCamera), but haven’t received it yet, but as I said, I would like to understand the principle already. Thank you very much…
  • Notification issued from MMM-MQTTbridge but nothing happens

    5
    0 Votes
    5 Posts
    1k Views
    F
    And again, Serge sharp eyes found the errors. I was somply trying to hard to add quotes and stuff so it got messed up. The working config for receiving commands from Home Assistant looks like this now: var mqttHook = [ { mqttTopic: "cmnd/bathroom/mirror", mqttPayload: [ { payloadValue: "MONITOROFF", mqttNotiCmd: ["MONITOROFF"] }, { payloadValue: "MONITORON", mqttNotiCmd: ["MONITORON"] }, { payloadValue: "UNDIM", mqttNotiCmd: ["UNDIM"] }, { payloadValue: "DIM", mqttNotiCmd: ["DIM"] }, ], }, ]; var mqttNotiCommands = [ { commandId: "MONITOROFF", notiID: 'REMOTE_ACTION', notiPayload: {action: 'MONITOROFF'} }, { commandId: "MONITORON", notiID: 'REMOTE_ACTION', notiPayload: {action: 'MONITORON'} }, { commandId: "DIM", notiID: 'REMOTE_ACTION', notiPayload: {action: 'BRIGHTNESS', value: '50'} }, { commandId: "UNDIM", notiID: 'REMOTE_ACTION', notiPayload: {action: 'BRIGHTNESS', value: '255'} }, ]; module.exports = { mqttHook, mqttNotiCommands};
  • MMM-MQTTbridge doesn't seem to report USER_PRESENCE correctly?

    4
    0 Votes
    4 Posts
    891 Views
    F
    The config that works looks like this: var notiHook = [ { notiId: "USER_PRESENCE", notiPayload: [ { payloadValue: '1', notiMqttCmd: ["SCREENON"] }, { payloadValue: '0', notiMqttCmd: ["SCREENOFF"] } ] } ]; var notiMqttCommands = [ { commandId: "SCREENOFF", mqttTopic: "state/bathroom/mirror/monitor", mqttMsgPayload: "OFF" }, { commandId: "SCREENON", mqttTopic: "state/bathroom/mirror/monitor", mqttMsgPayload: "ON" } ]; module.exports = { notiHook, notiMqttCommands }; Thankyou again for your excellent help and sharp eyes Serge!. :flexed_biceps: :heart_suit:
  • Raspberry PI wont startup

    7
    0 Votes
    7 Posts
    1k Views
    bheplerB
    @Zack1324 - Absolutely. Over time, they just go bad. That could be the problem. I would copy the config.js file to another computer first, then format & burn the Raspbian OS to the new card. Run through the Pi setup, use @sdetweil installation scripts to get Magic Mirror up & running and then copy the config.js to the new card. Then it’s just a matter of installing the modules.
  • 0 Votes
    4 Posts
    1k Views
    Y
    I have the same issue, this is weird because I have already had a billable account which has a running Kubernetes cluster, I did everything but google returning the “REQUEST DENIED”.
  • MMM-awesome-alexa "WARNING! electron-v6.1-linux-arm/snowboy.node"

    10
    0 Votes
    10 Posts
    2k Views
    S
    for awesome alexa, some of the 14 steps will cause errors, just keep going… I have a script that does them all https://www.dropbox.com/s/omrx3vztjp738hf/do-install.sh?dl=0 can’t help on the GoogleAssistant side…
  • Could not resolve host

    6
    0 Votes
    6 Posts
    1k Views
    S
    @vvrangler i run all my sbcs on a battery (ups) to avoid power issues and mostly wired ethernet to avoid wifi issues… but see occasional unresponsive systems too
  • 0 Votes
    8 Posts
    955 Views
    S
    @vvrangler said in Calendar appears to be fetching the last calendar in the list multiple times.: I also have a cope of other calendar related issue that I’ve seen in the log, would it be best if I close this topic and posted a new one? yes please
  • I’ve messed up my magic mirror

    9
    0 Votes
    9 Posts
    2k Views
    S
    @richardh151 great… thanks for the feedback, glad u got it working just for info, did you use the automated installer? https://github.com/sdetweil/MagicMirror_scripts
  • open web page

    3
    0 Votes
    3 Posts
    522 Views
    S
    @raf the a2d author is busy with a move and new job. but I would expect that some other code would be required as the others u mention have specific apis