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: Install-Problem
      cd MagicMirror
      npm start
      
      posted in Troubleshooting
      yawnsY
      yawns
    • RE: IR touch frame

      I should’ve mentioned the TFT is 32" … I knew I forgot something important.
      I will try to contact one of these vendors to see if they can provide something for me.

      posted in Hardware
      yawnsY
      yawns
    • RE: FB Bday List

      @Damian said in FB Bday List:

      @yawns said in FB Bday List:

      @iMAGiC said in FB Bday List:

      @plybz18 in your fb events, you can copy bday link form bottom left.

      And then add it as a calendar :)

      Hello Can you detail a bit more as I’m unsure what link you mean (facebookcom/events/birthdays ?) , and how to include in my iCal to show in MM… or if you mean to add a seperate calendar just for this to show all birthdays? I do not have FB Birthday events synced to my phone btw. thank you.

      I did not try it with MagicMirror and I don’t have any working copy of it here at the moment, but it should work.
      Log in to facebook on your computer (not a mobile device) and navigate to Events. In events scroll down and look on the right side. There you should see a text block saying “You can add your events to Microsoft Outlook, Google Calendar, or Apple Calendar.” Underneath there are two links. The second link is for birthdays. Copy this link and add it as a new calendar. The link should look like this:

      webcal://www.facebook.com/ical/b.php?uid=100002xxxxxxxxxx&key=xxxxxxxxxxxxxxx

      Add it to your config like this:

      		{
      			module: "calendar",
      			header: "My Calendars",
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check-o ",
      						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      					},
      					{
      						symbol: "birthday-cake ",
      						url: "webcal://www.facebook.com/ical/b.php?uid=100002xxxxxxxxxx&key=xxxxxxxxxxxxxxx"
      					},
      				]
      			}
      		},
      
      
      posted in Requests
      yawnsY
      yawns
    • RE: MMM-PIR-Sensor off delay

      There is a fork which is supposed to do exactly that:
      https://github.com/Patrick-Remy/MMM-PIR-Sensor

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Install-Problem

      Sometimes it’s that easy. Enjoy the development of your magic mirror

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: IR touch frame

      I picked this up again and checked with “Peau Productions”. This is their positive feedback:

      Hello Stefan,
      Yes this diagram looks like an ideal smartmirror setup. Usually the monitor is only using the upper half of the mirror. We can certainly get you a custom frame to match but I will need to know your exact Length x Width dimms and your diagonal dimm. I will also need to know how many touch points you would like supported “2,6, 12, 32, 50+” touch points. Once I have this info I can get you a mechanical drawing and a quote. Any other questions, please let me know.
      Best regards

      Hopefully I find some spare time during christmas break to find some measurements.

      posted in Hardware
      yawnsY
      yawns
    • RE: "Live" currency exchange rate module

      @Mykle1
      It was linked in the initial post.

      https://github.com/yawnsde/MMM-CurrencyExchange

      posted in Requests
      yawnsY
      yawns
    • RE: MMM-Button dont load

      please run npm list, which electron version are you running?

      If it is 1.4 then please run this command in the MMM-Button folder

      npm rebuild --runtime=electron --target=1.4.0 --disturl=https://atom.io/download/atom-shell --build-from-source

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: Issues during installation

      @Jopyth said in Issues during installation:

      Probably run sudo dpkg --configure -a?

      :rofl: no offense to mikem112, that reply just made me laugh

      posted in Troubleshooting
      yawnsY
      yawns
    • RE: IR Frame

      As long as it is fullhd and not hdready you should be fine

      posted in Hardware
      yawnsY
      yawns
    • 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
    • 7
    • 8
    • 9
    • 10
    • 11
    • 15
    • 16
    • 9 / 16