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

    Posts

    Recent Best Controversial
    • RE: This might be a daft question, but...

      @strawberry-3-141 I saw you were online, so I’m shamelessly tagging you in my post in the hopes of some guidance :-(

      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: Trafficmaps

      @Notumlord @strawberry-3-141

      I have these two working fine for me in my config

      	{
      		module: 'MMM-Traffic',
      		position: 'bottom_right',
      		classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
      		config: {
      			api_key: '',
      			mode: 'bicycling',
      			origin: 'my origin',
      			destination: 'my destination',
      			route_name: 'Home to Work',
      			changeColor: true,
      			showGreen: false,
      			limitYellow: 5, //Greater than 5% of journey time due to traffic
      			limitRed: 20, //Greater than 20% of journey time due to traffic
      			traffic_model: 'pessimistic',
      			interval: 120000 //2 minutes
      		}
      	},
      	{
      		module: 'MMM-Traffic',
      		position: 'bottom_right',
      		classes: 'dimmed medium', //optional, default is 'bright medium', only applies to commute info not route_name
      		config: {
      			api_key: '',
      			mode: 'driving',
      			origin: 'my origin',
      			destination: 'my destination',
      			route_name: 'Home to Work',
      			changeColor: true,
      			showGreen: false,
      			limitYellow: 5, //Greater than 5% of journey time due to traffic
      			limitRed: 20, //Greater than 20% of journey time due to traffic
      			traffic_model: 'pessimistic',
      			interval: 120000 //2 minutes
      		}
      	},
      
      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: This might be a daft question, but...

      OK, I’m up and running, but I’m not sure how to parse my JSON result in to html.

      I have this, but don’t know whether it’s correct

      I just want to see if I can list the names from the results of my GET request

      getDom: function () {
          var wrapper = document.createElement("div");
      
          $.getJSON(this.url,
              function (data) {
                  var tr;
                  for (var i = 0; i < data.length; i++) {
                      tr = $('<tr/>');
                      tr.append("<td>" + data[i].name + "</td>");
      
                      $('table').append(tr);
                  }
                  wrapper.append("<td>" + data[i].name + "</td>");
              });
          return wrapper;
      

      I’d like to note, this is all completely new to me, so I’m trying to learn as I go…

      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: This might be a daft question, but...

      @alexyak Sorted, I tried that and imported an existing module

      Now I just to figure out what I’m doing now! :)

      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: This might be a daft question, but...

      Sorry, again

      Which of these projects would be the correct one?!

      0_1473362107099_node.PNG

      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: No Data in Module MMM-Formula1

      @strawberry-3.141 ahh, my bad!

      apologies for the confusion

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: No Data in Module MMM-Formula1

      @ostfilinchen That’s standard for all modules.

      Once you have cloned them, you need to install them

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: This might be a daft question, but...

      Thanks @alexyak , much appreciated!

      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: This might be a daft question, but...

      Can I use Visual Studio?

      What type of project would I create?

      posted in Development
      MitchfarinoM
      Mitchfarino
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      Just been looking at your NFL module, it’s incredible!

      Is there anyway you could implement something similar for fixtures/live games in the soccer module?

      posted in Sport
      MitchfarinoM
      Mitchfarino
    • RE: PIR-Sensor - put your mirror to sleep if not used

      @paviro So it works with node 6 now?

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: Website Launched

      @Knox On that image, is that generally how you guys are building your mirrors?

      Then with just another frame to go over the front to stop the mirror falling through?

      posted in Announcements
      MitchfarinoM
      Mitchfarino
    • RE: Forum email's confirmation impossible

      @MichMich @KirAsh4 @paviro are the main guys on the forum so may be able to help

      posted in Forum
      MitchfarinoM
      Mitchfarino
    • RE: Building mirror without programing

      @yo-less You’re a hero!

      I didn’t know this was possible either, but I’m gonna get it installed on my laptop.

      It’s annoying when I have a spare 30 minutes, but I have to get the pi/monitor out and set it all up before getting started!

      Now I can mess around and tinker on my laptop!

      Cheers

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      @strawberry-3.141 I do have an API key, don’t I need it? I just blanked it out for my post

      Thanks for your reply and module

      posted in Sport
      MitchfarinoM
      Mitchfarino
    • RE: MMM-Swipe - Hand gestures

      @mochman OK, I’m an idiot!

      I only have one sensor! Ha

      Thanks very much for your help, I’m gonna get one ordered then get back on it.

      Sorry for the daft questions

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: MMM-Swipe - Hand gestures

      @mochman I have vcc, trig, echo and gnd on my sensor - how do they map to the config you have posted?

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: MMM-Soccer - Standings, Schedules and Top Scorers

      When I attempt to use focus_on in the config, no data is displayed in the table

      Is this correct or does the readme need updating?

      {
      module: ‘MMM-soccer’,
      position: ‘bottom_left’,
      config: {
      api_key: ‘’,
      show: ‘ENGLAND’,
      focus_on: {‘ENGLAND’:‘LIVERPOOL’},
      max_teams: 10,
      leagues: {‘ENGLAND’: 426}
      }
      },

      posted in Sport
      MitchfarinoM
      Mitchfarino
    • RE: MMM-Swipe - Hand gestures

      @mochman I’m only just back looking at this

      Any tutorial I find online says I need a breadboard too - is that correct?

      What pins should put these in? Or where can I find resource on how to do it?0_1472852546333_IMG_20160902_223136.jpg

      posted in Troubleshooting
      MitchfarinoM
      Mitchfarino
    • RE: Cowboysdude's Mirror

      @cowboysdude Looks great!

      I need to get back in to things now, and get mine built!!

      posted in Show your Mirror
      MitchfarinoM
      Mitchfarino
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 5 / 10