MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. rabbit83ka
    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 2
    • Posts 31
    • Groups 0

    rabbit83ka

    @rabbit83ka

    5
    Reputation
    233
    Profile views
    31
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    rabbit83ka Unfollow Follow

    Best posts made by rabbit83ka

    • RE: MMM-FRITZ-Box-Callmonitor

      Hi @randpop,

      I’m running this plugin together with the fix by wunderbear and a Unitymedia-Fritzbox 6490 with FritzOS 7.02

      fritz_access.py does also work an gives a reasonable output.

      Regards

      posted in Troubleshooting
      R
      rabbit83ka
    • RE: How to make the background all black

      I’m just cutting the power of the backlight with a relais and MMM-PIR-Sensor. This way the screen is really black and invisible while it’s up immediatly if the sensor detects motion.

      posted in Custom CSS
      R
      rabbit83ka
    • RE: Experience with MMM-WebUntis?

      @kai I used it until last year, then this issue occured. Maybe check your logs with

      pm2 logs MagicMirror --lines=500
      

      to see if you have the same issue.

      posted in General Discussion
      R
      rabbit83ka
    • RE: Timetable from Untis.at

      Hi, there’s a module available, works fine for me.

      posted in Requests
      R
      rabbit83ka
    • RE: EVCC Dashboard MM module

      @chrisfr1976 You need to set up a Grafana Dashboard based on influx. The discussions in the evcc github (for example here) are a good starting point. Then install MMM-GrafanaChart. Config.js as described in the module documentation:

      {
      	 		module: 'MMM-GrafanaChart',
      		 	position: 'top_left',   // This can be any of the regions.
      		 	config: {
      				version: "6", // Only add this line if you are using Grafana verison 6 or greater
      				id: "V9usrR48j", // Only Mandartory if you are using Grafana verison 6 or greater found after /d/ in the url
      				host: "solarrouter", //Mandatory. See url when displaying within grafana
      				port: 3000, // Mandatory.
      				dashboardname: "pv-ubersicht-mirror", // Mandatory.
      				orgId: 1, // Mandatory.
      				panelId: 9, // Mandatory.
      				from: "now-1d", // use any of grafanas time-range-controls
      				to: "now", // 
      				width: "100%", // Optional. Default: 100%
      				height: "100%", // Optional. Default: 100%
      				scrolling: "no", // Optional. Default: no
      				refreshInterval: 9000 //Optional. Default: 900 = 1/4 hour
      				}
      		},
      
      posted in Requests
      R
      rabbit83ka

    Latest posts made by rabbit83ka

    • RE: EVCC Dashboard MM module

      @chrisfr1976 You need to set up a Grafana Dashboard based on influx. The discussions in the evcc github (for example here) are a good starting point. Then install MMM-GrafanaChart. Config.js as described in the module documentation:

      {
      	 		module: 'MMM-GrafanaChart',
      		 	position: 'top_left',   // This can be any of the regions.
      		 	config: {
      				version: "6", // Only add this line if you are using Grafana verison 6 or greater
      				id: "V9usrR48j", // Only Mandartory if you are using Grafana verison 6 or greater found after /d/ in the url
      				host: "solarrouter", //Mandatory. See url when displaying within grafana
      				port: 3000, // Mandatory.
      				dashboardname: "pv-ubersicht-mirror", // Mandatory.
      				orgId: 1, // Mandatory.
      				panelId: 9, // Mandatory.
      				from: "now-1d", // use any of grafanas time-range-controls
      				to: "now", // 
      				width: "100%", // Optional. Default: 100%
      				height: "100%", // Optional. Default: 100%
      				scrolling: "no", // Optional. Default: no
      				refreshInterval: 9000 //Optional. Default: 900 = 1/4 hour
      				}
      		},
      
      posted in Requests
      R
      rabbit83ka
    • RE: EVCC Dashboard MM module

      @chrisfr1976 I’m using Grafana and MMM-GrafanaChart to display the data on my mirror.

      posted in Requests
      R
      rabbit83ka
    • RE: Experience with MMM-WebUntis?

      @HeikoGr Thank you! Works great and saves a lot of space.

      posted in General Discussion
      R
      rabbit83ka
    • RE: Experience with MMM-WebUntis?

      @HeikoGr , one addition: until 2023, there was a very compact layout of the module (screenshot still in the readme). Then there was this PR, and the new layout is very space consuming with more then one child/student. Maybe it’s feasible to use both layouts (old and new) by a config switch, but I’m a mechanical engineer, not a programmer… but I could test the modifications.

      posted in General Discussion
      R
      rabbit83ka
    • RE: Experience with MMM-WebUntis?

      @HeikoGr Great, it works again. Thanks for your effort!

      posted in General Discussion
      R
      rabbit83ka
    • RE: Experience with MMM-WebUntis?

      @karsten13 thanks for the hint, I tried several versions, the issue still persists.

      posted in General Discussion
      R
      rabbit83ka
    • RE: Experience with MMM-WebUntis?

      @kai I used it until last year, then this issue occured. Maybe check your logs with

      pm2 logs MagicMirror --lines=500
      

      to see if you have the same issue.

      posted in General Discussion
      R
      rabbit83ka
    • RE: Switching MMM-pages with MMM-ModuleScheduler

      @davidboisducafe Thanks. And also still running on my mirror.

      posted in Troubleshooting
      R
      rabbit83ka
    • RE: MMM-Fritz-Box-Callmonitor: Notification formatting

      @sdetweil I used your script

      fixuppm2.sh
      

      when I set up the mirror
      Now I modified ~/MagicMirror/installers/mm.sh to

      #!/bin/bash
      # This file is still here to keep PM2 working on older installations.
      cd ~/MagicMirror
      source venv/bin/activate
      DISPLAY=:0 npm start
      

      but that doesn’t work, error occures again because node_helper doesn’t seem to use the venv.

      posted in Troubleshooting
      R
      rabbit83ka
    • RE: MMM-Fritz-Box-Callmonitor: Notification formatting

      @sdetweil Thanks, so it should look like this?

      #!/bin/bash
      # This file is still here to keep PM2 working on older installations.
      cd ~/MagicMirror
      export PYTHONPATH="/home/pi/venv/bin/python"
      DISPLAY=:0 npm start
      
      posted in Troubleshooting
      R
      rabbit83ka