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

    Posts

    Recent Best Controversial
    • RE: config not working.

      If in doubt, there’s usually a comma missing ;-). In your case, after ‘lower_third’…

      {	module: 'compliments',
      	position: 'lower_third',
      	config: {
      		compliments: {
      				morning: [
      						'Good morning, handsome!',
      						'Enjoy your day!',
      						'How was your sleep?'
                                                  ],
      						afternoon: [
                             'Hello, beauty!',
                             'You look sexy!',
                             'Looking good today!'
                                                  ],
      						evening: [
                             'Wow, you look hot!',
                             'You look nice!',
                             'Hi, sexy!'
                                                  ]
      					}
      			}
      },
      
      posted in Troubleshooting
      yo-lessY
      yo-less
    • RE: Weatherunderground - currently - hourly - daily - configurable

      @RedNax Glad to hear I could add some thoughts to the project, love your module!

      posted in Troubleshooting
      yo-lessY
      yo-less
    • RE: Auto-disable module

      @ronny3050 Impressive response, thank you!

      posted in Development
      yo-lessY
      yo-less
    • RE: Auto-disable module

      Could you point me in the right direction as to how I could hide a complete module with a .hide() call?

      posted in Development
      yo-lessY
      yo-less
    • RE: Auto-disable module

      Nice solution, thanks man!

      posted in Development
      yo-lessY
      yo-less
    • RE: Auto-disable module

      Alright, I’ve just figured it out, whenever the API returns an empty connections array, I simply don’t start generating a table via getDom, works like a charm :)

      posted in Development
      yo-lessY
      yo-less
    • Auto-disable module

      Hey everyone, I’m currently developing a local transport module and I would love for the module to auto-disable itself at night when there are no tram connections, is there any way to tell a module to disable itself when a certain condition is met? Would love to hear your ideas :)

      posted in Development
      yo-lessY
      yo-less
    • RE: Weatherunderground - currently - hourly - daily - configurable

      My bad, code should have been:

      	var hourlyTime = new Date();
      	hourlyTime.setHours(hourlyforecast.FCTTIME.hour,00,00);
      	
      	if (hourlyTime > sunset || hourlyTime < sunrise) {
      					
      	this.hourlyforecast.push({
      
      		hour:    this.thour,
      		maxTemp: this.tmaxTemp,
      		minTemp: this.tminTemp,
      		icon:    this.config.iconTableNight[hourlyforecast.icon],
      		pop:	 hourlyforecast.pop,
      		mm:	 this.tmm
      	});
      	
      	} else {
      					
      	this.hourlyforecast.push({
      
      		hour:    this.thour,
      		maxTemp: this.tmaxTemp,
      		minTemp: this.tminTemp,
      		icon:    this.config.iconTableDay[hourlyforecast.icon],
      		pop:	 hourlyforecast.pop,
      		mm:	 this.tmm
      	}); 
      	}
      }
      }
      
      posted in Troubleshooting
      yo-lessY
      yo-less
    • RE: Weatherunderground - currently - hourly - daily - configurable

      Alright, I have noticed one more issue. With the current code the sun shines all throughout the night in the hourly forecasts:

      0_1470678948573_hourly-forecasts-old.png

      I have written some code to fix it so that it looks like this instead:

      0_1470678980956_hourly-forecasts.png

      Here is what I did to lines 552 - 563 in MMM-WunderGround.js ->

      		var hourlyTime = new Date();
      		hourlyTime.setHours(hourlyforecast.FCTTIME.hour,00,00);
      		
      		if (hourlyTime > sunset || hourlyTime < sunrise) {
      						
      		this.hourlyforecast.push({
      
      			hour:    this.thour,
      			maxTemp: this.tmaxTemp,
      			minTemp: this.tminTemp,
      			icon:    this.config.iconTableNight[forecast.icon],
      			pop:	 hourlyforecast.pop,
      			mm:	 this.tmm
      		});
      		
      		} else {
      						
      		this.hourlyforecast.push({
      
      			hour:    this.thour,
      			maxTemp: this.tmaxTemp,
      			minTemp: this.tminTemp,
      			icon:    this.config.iconTableDay[forecast.icon],
      			pop:	 hourlyforecast.pop,
      			mm:	 this.tmm
      		}); 
      		}
      	}
      	}
      

      Again, I’m not sure if this can be done more efficiently, I’m happy to be pointed in a better direction :). But for now, everything seems to be just fine.

      posted in Troubleshooting
      yo-lessY
      yo-less
    • RE: Weatherunderground - currently - hourly - daily - configurable

      @yo-less said in Weatherunderground - currently - hourly - daily - configurable:

      EDIT:
      I realized there are more icons that I would change in the icon table, here’s my version:

      In fact, it should look like this -> ( changed “night-alt-partly-cloudy” to "“wi-night-alt-partly-cloudy”)

      iconTableNight: {                        
              "chanceflurries": "wi-night-snow-wind",
              "chancerain": "wi-night-showers",
              "chancesleet": "wi-night-sleet",
              "chancesnow": "wi-night-alt-snow",
              "chancetstorms": "wi-night-alt-storm-showers",
              "clear": "wi-night-clear",
              "cloudy": "wi-night-alt-cloudy",
              "flurries": "wi-night-alt-snow-wind",
              "fog": "wi-night-fog",
              "haze": "wi-night-alt-cloudy-windy",
              "mostlycloudy": "wi-night-alt-cloudy",
              "mostlysunny": "wi-night-alt-partly-cloudy",
              "partlycloudy": "wi-night-alt-partly-cloudy",
              "partlysunny": "wi-night-alt-partly-cloudy",
              "rain": "wi-night-alt-rain",
              "sleet": "wi-night-alt-sleet",
              "snow": "wi-night-alt-snow",
              "tstorms": "wi-night-alt-thunderstorm"
      	},
      
      posted in Troubleshooting
      yo-lessY
      yo-less
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 9 / 10