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

    Posts

    Recent Best Controversial
    • RE: Writing a custom module.

      Okay, understood. So we are talking about a site like this?
      https://www.aa.org/pages/en_US/daily-reflection

      That’s a full website which makes it difficult just extracting the reflection. Not impossible, but difficult and vulnerable to parsing errors. Do you have other sites, maybe a rss feed or something similar?

      posted in Requests
      yawnsY
      yawns
    • RE: Help with Weather Modules!

      @twosix
      you could use both modules or you could remove the default ones.
      Either you remove the whole module entries:

      {
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "New York",
      				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      

      or you add disabled: true, like this:

      {
      			module: "currentweather",
      			position: "top_right",
      			disabled: true,
      			config: {
      				location: "New York",
      				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			disabled: true,
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Magic Mirror in Raspberry pi 1

      @gizmo90 said in Magic Mirror in Raspberry pi 1:

      startx -> LXconsole -> node serveronly -> open the browser of your choice (address: localhost:port)
      but first config the config.js

      The user did not yet install magicmirror, so he cannot start it.

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Suggestion: Should we add a list of 2-way mirror vendors to Wiki?

      Nice. I added one Vendor for Germany. I did not use them (for now), they were reccomended by glancr.os after several tests. Prices look very fair.

      posted in Hardware
      yawnsY
      yawns
    • RE: Showing temperature from php file

      @12wsx
      Either you manipulate MMM-Solartemp.css in module folder ~/MagicMirror/modules/MMM-Solartemp or you modify custom.css in ~/MagicMirror/css

       .figures {
      	 font-family: "Times New Roman" !important;
      }
      

      If you use the second option you are not running into problems if there is an update to the module.

      posted in Requests
      yawnsY
      yawns
    • RE: [MMM-iFrameReload]: iFrame won't load

      Please change it to (look at the module name):

      {
      		module: 'MMM-iFrameReload',
      		position: 'top_left',	// This can be any of the regions.
      		config: {
      			// See 'Configuration options' for more information.
      				url: "http://192.168.xx.xx:88/cgi-bin/CGIProxy.fcgi?cmd=snapPicture&usr=USER&pwd=PASS",
      				width: "640px", // Optional. Default: 100%
      				height: "360px", //Optional. Default: 100px
      				refreshInterval: 10  //Optional. Default: 3600 = 1 hour
      			}
      		},
      

      The readme of the module is wrong :)

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: How to set ipWhitelist for all device can acess to MagicMirror v2?

      @Mykle1 said in How to set ipWhitelist for all device can acess to MagicMirror v2?:

      @morozgrafix

      can I merely view it or is there some control of MM that I can use remotely?

      http://beta.magicmirror.builders/module/24/remote-control ;)

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Survey: Decreased interest in my mirrors

      I agree to @strawberry-3-141
      The active people in here build a mirror and continue supporting the community with new modules and error handling. But most likely they won’t build lots of mirrors. Other people around the world join the forum, ask some support questions and disappear once they are happy. And I’m pretty sure there are several people being interested in this project in the beginning but lose interest with time going on or their priorities change.
      I ordered a mirror in your first batch of mirrors and it still is stored in the crate you used to send it. I don’t know if I ever will create a mirror and if the mirror glass will still fit the project, as the layout in my mind evolved.
      Additionaly I think people are tempted buying a real mirror glass but are afraid of the costs compared to the usability factor. Investing several hundred euros in a project you don’t know if you will really use it is a show stopper.

      What happened to your plan creating a webshop? Based on your revenue you could operate it as a Kleinstunternehmer.

      posted in Hardware
      yawnsY
      yawns
    • RE: Web view

      You could use one of the iFrame modules which loads the preferred website

      posted in Requests
      yawnsY
      yawns
    • RE: Compliments Module: Adding new line in String?

      did you try the HTML br tag?
      <br />

      posted in Troubleshooting
      yawnsY
      yawns
    • 1
    • 2
    • 16
    • 17
    • 18
    • 19
    • 20
    • 31
    • 32
    • 18 / 32