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

    Posts

    Recent Best Controversial
    • RE: Viewing Mirror through browser on network

      You should be able to access it from other computers. Make sure that you’re using the RPI’s current ipaddress.

      posted in General Discussion
      A
      alexyak
    • RE: Looking monitors for my Magic Mirror

      @tonicanog This could be a 42 inch TV or something.

      posted in Hardware
      A
      alexyak
    • RE: Trafficmaps

      @tyho

      Here’s a basic module traffic map module to display a static map with a route and traffic based on bing api’s:

      'use strict';
      
      Module.register('maproute',{
      	
      	defaults: {
              key: "your_bing_map_key",
              start: "Morganville, NJ",
              end: "New York, NY",
      	},
      	
      	start: function() {
      		Log.info('Starting module: ' + this.name);
      	},
      
              // Override dom generator.
      	getDom: function() {
      		var wrapper = document.createElement("img");
                      wrapper.style = "position:center; width:600px; height:600px;";
                      wrapper.src = "http://dev.virtualearth.net/REST/V1/Imagery/Map/Road/Routes?wp.0=" + this.config.start + ";46&wp.1=" + this.config.end + ";46&mapLayer=TrafficFlow&TravelMode=Driving&mapSize=600,600&key=" + this.config.key;
      		return wrapper;
      	}
      
      });
      

      Unfortunately there’s no way to change the style of the map on bing (black and white). You can get your map key from here:

      https://www.bingmapsportal.com/

      Thanks… Alex

      posted in Development
      A
      alexyak
    • RE: Preference Page

      Yep, I know :)

      posted in Requests
      A
      alexyak
    • RE: Trading module

      Alright I’ve just published it. Enjoy: :)

      https://forum.magicmirror.builders/topic/496/stocks

      posted in Requests
      A
      alexyak
    • Stocks

      Here’s a basic scrolling stocks ticker module. You can get it from here:

      https://github.com/alexyak/stocks

      This is how it looks:

      0_1471133603462_Screen Shot 2016-08-13 at 8.09.32 PM.png

      posted in Utilities
      A
      alexyak
    • RE: Preference Page

      I am thinking that it should be a real web page accessible from the web browser.

      posted in Requests
      A
      alexyak
    • RE: Preference Page

      I’d agree that the perefence/configuration page could get quite complicated, but if we design it in the modular extensible way so that module developers could modify and configure it by themselves specifically for their module requirements it might not take a lot of time…

      posted in Requests
      A
      alexyak
    • RE: Trading module

      I’ve built a basic scrolling stocks ticker based on the Google APIs if you’re guys interested.

      posted in Requests
      A
      alexyak
    • RE: Another Kickstarter is trying to launch Magic Mirror

      @Cato exactly my point. We already live “in the future” how all these campaigns promise :)

      posted in General Discussion
      A
      alexyak
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 8 / 11