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

    Posts

    Recent Best Controversial
    • RE: MMM-SwissTransport

      I’ve made an update. Now it works with a node_helper.js so you will have less problems with CORS errors.

      Have fun

      posted in Transport
      BangeeB
      Bangee
    • RE: Thin, Frameless Mirror

      Do you have a picture from the back? :-)

      posted in Show your Mirror
      BangeeB
      Bangee
    • RE: TypeError: curr.start.toISOString is not a function

      can you maybe post your solution? that would be great

      thanks bangee

      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: MMM-SwissTransport

      @kwyjibo089, yes it’s possible:

      change the line function getParams() like this:

      	/* getParams()
      	 * Generates an url with api parameters based on the config.
      	 *
      	 * return String - URL params.
      	 */
      	getParams: function() {
      		var params = "?";
                      params += "id=" + this.config.id;
      		params += "&limit=" + this.config.maximumEntries;
                      params += "&transportations[]=ec_ic&transportations[]=s_sn_r&transportations[]=ir&transportations[]=re_d&transportations[]=ice_tgv_rj";
      
      		return params;
      },
      
      

      The line params += "&transportations[]=ec_ic&transportations[]=s_sn_r..."; is new an should allow you to filter the transportation object.

      Here are all option:
      transportations
      Transportation means; one or more of ice_tgv_rj, ec_ic, ir, re_d, ship, s_sn_r, bus, cableway, arz_ext, tramway_underground
      example:
      &transportations[]=ec_ic&transportations[]=bus

      Source: http://transport.opendata.ch/docs.html#section

      It’s not testet yet, but I think it should work for you.

      Have fun,

      Gruss aus Oberrieden :-)

      posted in Transport
      BangeeB
      Bangee
    • RE: Total n00b and can't get this thing to work. Please help!

      Try to remove the folder: ~/MagicMirror and use the installer as described on git.
      check this:
      https://github.com/MichMich/MagicMirror

      Manual Installation

      Download and install the latest Node.js version.
      Clone the repository and check out the beta branch: git clone https://github.com/MichMich/MagicMirror
      Enter the repository: cd ~/MagicMirror
      Install and run the app: npm install && npm start
      
      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: IR Touchframe suggestions?

      no it’s not testet at the moment. i have different type of glas at home, so let’s find out if it works.

      posted in General Discussion
      BangeeB
      Bangee
    • RE: IR Touchframe suggestions?

      I’ve ordered a Touch Film
      but this will take some time, untill this arrives in Switzerland :-D

      posted in General Discussion
      BangeeB
      Bangee
    • RE: MMM-PIR-Sensor - White Screen

      I’m glad to hear that! :-D

      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: PIR-Sensor - put your mirror to sleep if not used

      @illskool
      Check this out:
      https://forum.magicmirror.builders/topic/569/mmm-pir-sensor-white-screen/39

      posted in System
      BangeeB
      Bangee
    • RE: How to Troubleshoot

      you can test your software in a browser using the webserver:
      http://mirror_ip_adress:8080

      install in firefox a tool called Firebug https://addons.mozilla.org/de/firefox/addon/firebug/
      it will show you errors on the fly.
      Changes in node_helper.js requires a restart of your mirror software.

      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: MMM-DHT22 Humidity and Temperature Module

      can you post a pic of your wiring?

      when you run the command sudo ./dht_var direct in your console, what happens?

      posted in Utilities
      BangeeB
      Bangee
    • RE: frameless mirror

      I’ve ordered the mirror with the hole in it.
      I don’t know how to do this by your selve :-)

      posted in Show your Mirror
      BangeeB
      Bangee
    • RE: frameless mirror

      yes its a 250 cd/m2

      posted in Show your Mirror
      BangeeB
      Bangee
    • RE: frameless mirror

      Hi @binderth
      The monitor is put in the frame and hold by the glass and some lashes.

      This frame very thin an built with 1.5mm aluminium.
      The Weight ist only 1 kg.
      I’ve used a 3mm 12% twoway mirror.

      If someone is interested in this, I will produce some more pices.

      PM me if you’re interested in it.

      posted in Show your Mirror
      BangeeB
      Bangee
    • RE: frameless mirror

      0_1482437497958_IMG_8645.JPG

      Here is my latest project. I have integrated the PIR sensor in my the glass 😏

      posted in Show your Mirror
      BangeeB
      Bangee
    • RE: Not really a mirror at all - but is really helpful

      nice work! :-)

      posted in Showcase
      BangeeB
      Bangee
    • RE: MMM-DHT22 Humidity and Temperature Module

      I am using a PIR sensor.
      So i can’t reproduce it.

      posted in Utilities
      BangeeB
      Bangee
    • RE: MMM-DHT22 Humidity and Temperature Module

      that’s very strange!?!
      Is this module working with a PIR Sensor or a Webcam?
      Im using Paviro’s PIR Sensor to turn on an off my monitor.

      posted in Utilities
      BangeeB
      Bangee
    • RE: TypeError: curr.start.toISOString is not a function

      Ok, :-) but actually I don’t no where to implement this in js :-)

      Can someone give me a hint where to place my str_replace (UTC+00:00) in DTSTART variable?

      Thanks ;-)

      posted in Troubleshooting
      BangeeB
      Bangee
    • RE: TypeError: curr.start.toISOString is not a function

      so now I found something new:

      in my Calendar the DTSTART is set to:
      DTSTART;TZID="(UTC+00:00) Monrovia, Reykjavik":20161028T200000

      when I remove (UTC+00:00) everything works fine.

      Then it looks like this:
      DTSTART;TZID="Monrovia, Reykjavik":20161028T200000

      I’ve used a PHP Script to do this.
      @MichMich can you implement this in the js script? or what will I need to replace for testing?

              $ch = curl_init();
      
              // set url
              curl_setopt($ch, CURLOPT_URL, "https://ical.url/calendar.ics");
              curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
              curl_setopt($ch, CURLOPT_HEADER, false);
              curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
              curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
              curl_setopt($ch, CURLOPT_COOKIEJAR, "blabla");
      
                  // $output contains the output string
              $output = curl_exec($ch);
      
              // close curl resource to free up system resources
              curl_close($ch);
              $response = new Response();
      
              $output = str_replace('(UTC+00:00) ', '', $output);
      
              $response->setContent($output);
              $response->setStatusCode(Response::HTTP_OK);
      
              $response->headers->set('Content-type', 'text/calendar');
      
              return $response;
      
      posted in Troubleshooting
      BangeeB
      Bangee
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 1 / 7