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

    Posts

    Recent Best Controversial
    • RE: Measuring power/energy cost on a 24/7 running pi

      ah, just saw that Sam recommended an ammeter…this may work, mine (another one) not.

      posted in Tutorials
      thgmirrorT
      thgmirror
    • RE: Measuring power/energy cost on a 24/7 running pi

      @merek Btw. it will not be possible to messure the amount with an ammeter. It is too low to be detected…OK, my ammeter is not able to do it…

      posted in Tutorials
      thgmirrorT
      thgmirror
    • RE: Measuring power/energy cost on a 24/7 running pi

      @sdetweil you really pay only 8 Dollar-Cent per kw/h? We have to pay 25 up to 32 Euro-Cent in Germany:-( That are round about 29 up to 38 Dollar-Cent.

      @merek it will be less, I think, but it depends what the pi is doing. The power supply sdetwel described can deliver 36 watts, but it is not needed the whole day. Different Websites say between 12 and 20 Euro a year for the pi…the costs for screen will be much more.

      What you can do is to choose an other RPI-modell and/or deactivate functions you don’t need on the board (Ethernet, USB) …and buy a screen you can turn off by MM.

      posted in Tutorials
      thgmirrorT
      thgmirror
    • RE: MMM-SORT still needs API key ?

      @sdetweil yes, I tried it but the parameter (margin/width/high etc.) drives me crazy…it was much easier for me to create a local html. And it is not time-critical. updating every 24 hours will be enough.

      Thomas

      posted in Troubleshooting
      thgmirrorT
      thgmirror
    • RE: MMM-SORT still needs API key ?

      @RIKKO14 as a workaround you can show the content of a website with the following HTML-code (as an example Cadiz in Spain):
      bb3c5a41-9f7e-40ce-93d5-c4df98ee8280-image.png

      Store this as a file in the modules-folder with the extension html and use SmartWebDisplay to display it.
      To get another location go to https://www.tideking.com/ and use the search function to find it. Take the url and enter it in the HTML.

      Leads to
      47396c27-0f27-4039-9408-813be00e86f1-image.png

      posted in Troubleshooting
      thgmirrorT
      thgmirror
    • RE: No Tour de France module???

      Short update, same idea as above:

      e214c0ab-7973-4069-a71d-69e5f136739c-image.png

      This is the videotext of the german broadcast ARD, looks more like MM:-)

      Built by this html (which I still can’t add as coding):

      51604256-6bd2-4046-a996-fb54b289d070-image.png

      posted in Development
      thgmirrorT
      thgmirror
    • No Tour de France module???

      Hi,
      I looked today for a module for the Tour de France…and found none.
      But I was able to integrate a kind of screenshot from a webside with the total results.
      I would like to share it with you.
      Create a file with the following content, name it tdf.html and store it in the MagicMirror-modules folder (sorry, I was not able to add it as a html-source, only as a picture, but it is standard-html and only some lines:-)):

      64fcc18c-c225-4da9-8a36-7a38e98f3c3d-image.png

      Download and install the MMM-SmartWebDisplay if not done before and add the following part to your config.js

      		{
      			module: 'MMM-SmartWebDisplay',
      			position: 'top_center',	
      			config: {
      				logDebug: false, 
      				height: "1000px", 
      				width:"1000px", 
                               	updateInterval: 15, 
                   	                NextURLInterval: 0, 
      				displayLastUpdate: false, 
                  	                url: ["/modules/tdf.html"], 
      				}
      		},
      

      leads to this screen:

      4bde64b5-31fc-4b99-9967-801c379a8742-image.png

      Thomas

      posted in Development
      thgmirrorT
      thgmirror
    • RE: MM-Remote Android App

      Hi @Klettner,
      I like your App very much!

      It also runs if I enter the hostname instead of the IP-address. This helps me a lot because I don’t use a static IP.

      Btw. I took the first apk in the list and it works on my Huawei P8Lite (Android 6.0.1).

      Thank you for the App

      Thomas

      posted in Utilities
      thgmirrorT
      thgmirror
    • RE: Put RSS module in two places?

      Hi @tf2, in my config.js, I have two newsfeed-instances:

      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: " 3 Podcasts",
      					url: "http://localhost:8080/modules/Podcast.rss2"
      				},
           							],
      			showSourceTitle: true,
      			showPublishDate: true,
      			broadcastNewsFeeds: true,
                  ignoreOldItems: true,
                  showDescription: true,
      			broadcastNewsUpdates: true,
                  wrapDescription: true
      		}
      	},
      

      and

      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
           			{
      					title: "Tagesschau",
      					url: "http://www.tagesschau.de/xml/rss2"
      				},
                      {
      					title: "Spiegel Online",
      					url: "https://www.spiegel.de/schlagzeilen/index.rss"
      				},
                      {
      					title: "Radio Bonn Rhein-Sieg",
      					url: "https://www.radiobonn.de/thema/bonn-su-429.rss"
      				}
      
      			],
      			showSourceTitle: true,
      			showPublishDate: true,
      			broadcastNewsFeeds: true,
                  ignoreOldItems: true,
                  showDescription: true,
      			broadcastNewsUpdates: true,
                  wrapDescription: true
      		}
      	},
      

      which leads to this output:

      b62bb22d-6b6e-48e4-9b22-5de8fcdef39c-image.png

      posted in Troubleshooting
      thgmirrorT
      thgmirror
    • 1 / 1