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

    Posts

    Recent Best Controversial
    • RE: Wunderlist won't display entries

      @binderth said in Wunderlist won't display entries:

      CLIENT ID: 20 characters
      CLIENT SECRET: 60 characters

      Please be aware, that in the Wunderlist API there’s a CLIENT SECRET, which is exactly as long as the ACCESS TOKEN.
      The ACCESS TOKEN is not shown directly after generating the Keys, there’s a button “CREATE ACCESS TOKEN”, after that, the token is generated on the fly (note: it changes, everytime you press the button!). Then you can put in the token, which then resulted in my lists showing up in the MM as expected! ;)

      So please be aware, there are in fact three keys, only two are needed in config.js.

      posted in Troubleshooting
      binderthB
      binderth
    • RE: Netflix Module

      @schlachtkreuzer6 said in Netflix Module:

      viewing netflix in the bathroom :P why not?

      ok, fair point. but behind the mirror with false colours and without decent sound and being a Pi as a source, I don’t think it will be much of a great experience! I’d just take my tablet in the bath tub for that! ;)

      posted in Requests
      binderthB
      binderth
    • RE: Netflix Module

      I’m just wondering, what would be your use case?

      posted in Requests
      binderthB
      binderth
    • personalized calender, depending on CURRENT_USER

      Everyone in our family has it’s own google calendar. Would it be feasible to show the respective calender using the logged in person? I’m thinking of face recognition and then using the CURRENT_USER to show the respective calendar.
      I’m not sure, how to do this, if someone already did it, the config and a short howto would be great! ;)

      Thanks,
      Thomas.

      posted in Troubleshooting
      binderthB
      binderth
    • RE: MMM-Globe

      @lolobyte said in MMM-Globe:

      EUMETSAT_MSG_RGBNatColour_LowResolution.jpg

      only Problem with these images are the white bottomline, on my MM it looks like this:
      0_1483012096329_upload-dda9a5c9-d918-4dc6-b35c-ecf790791bed

      sadly, there’s some white capping down there, but I guess we have to live with that - real time cropping of images won’t make the PIs any faster! ;)

      posted in Utilities
      binderthB
      binderth
    • RE: MMM-Globe

      @lolobyte said in MMM-Globe:

      EUMETSAT_MSG_MPE_LowResolution.png’

      That’s great! I did this:

      start: function () {
      	self = this;
      	this.url = '';
      	this.imageUrls = {
      		'natColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_natural_color.jpg',
      		'geoColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_true_color.jpg',
      		'airMass': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_rgb_airmass.jpg',
      		'fullBand': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/himawari-8_band_03_sector_02.gif',
      		'europeDiscNat': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBNatColour_LowResolution.jpg',
      		'europeDiscSnow': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBSolarDay_CentralEurope.jpg'
      	}
      	this.hiResImageUrls = {
      		'natColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest_hi_res/himawari-8/full_disk_ahi_natural_color.jpg',
      		'geoColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest_hi_res/himawari-8/full_disk_ahi_true_color.jpg',
      		'airMass': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest_hi_res/himawari-8/full_disk_ahi_rgb_airmass.jpg',
      		'fullBand': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/himawari-8_band_03_sector_02.gif',
      		'europeDiscNat': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBNatColour_LowResolution.jpg',
      		'europePartSnow': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBSolarDay_CentralEurope.jpg'
      	}
      	console.log(this.imageUrls[this.config.style]);
      

      So, you can choose from more Images.

      • europeDiscNat: natural Color Europe Picture
      • europeDiscSnow: snow!!! ;)

      config.js

      	{
      		module: 'MMM-Globe',
      		position: 'center',
      		config: {
      			style: 'europeDiscNat',
      			imageSize: 600,
      			ownImagePath:'',
      			updateInterval: 10*60*1000
      		}
      	},
      

      If I have a bit more time, I’d like to add the standard ones and make a pull request to choose from. There’s a list of (near) real-time images from EUMETSAT: http://oiswww.eumetsat.org/IPPS/html/latestImages.html

      posted in Utilities
      binderthB
      binderth
    • RE: MagicMirror Pimatic (Home Automation) Dashboard

      @sero said in MagicMirror Pimatic (Home Automation) Dashboard:

      @binderth
      When using REST you need to poll / ask pimatic for updated values in a regular interval. With WebSockets pimatic can push changed values. This is less overhead and minimizes delays.

      @Mr.Sponti said in MagicMirror Pimatic (Home Automation) Dashboard:

      @binderth
      as @sero mentioned, the Advantage over the socket-API is that you get live events, if something in pimatic changes.
      In addition I use the “MMM-REST” (push) module for displaying selected status messages in case a specific pimatic rule is fullfilled.

      Thanks for the update. So, I think, I’ll do the same for my openHAB items, as openHAB can also push item changes through an API to MM. oh, I love challenges, since I never had done something in node.js! ;)

      posted in Show your Mirror
      binderthB
      binderth
    • RE: MagicMirror Pimatic (Home Automation) Dashboard

      @Mr.Sponti nice! just curious, why didn’t you use the “MMM-REST” module for your pimatic integration? I’m about to display some of the exact same Information (but from openHAB as a source for my home automation). So I wonder, if there were any impediments for using MMM-REST.

      Thanks,
      Thomas.

      posted in Show your Mirror
      binderthB
      binderth
    • RE: MMM-Globe

      @LukeCodewalker said in MMM-Globe:

      Hey guys,
      here is a module for displaying live pictures of our planet on your mirror.
      The pictures are taken from the Himawari-8 satellite.
      It’s also possible to use custom pictures.

      Thanks! Looks huge on my MagicMirror!
      Did you come across a live pic feed of a different satellite? I’m thinking of one, which has Europe and not Asian Pacific in the center! ;) Would be great to have a switch, so it would show the live shadows of my Position.

      greets,
      Thomas.

      posted in Utilities
      binderthB
      binderth
    • RE: frameless mirror

      @Bangee that Looks so great!
      I’m looking into planning my frame at the moment. How do you attach the Monitor to the mirror and how do you place it on the wall, could you please add some information/pictures on that?
      Thanks!

      posted in Show your Mirror
      binderthB
      binderth
    • 1 / 1