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

    Posts

    Recent Best Controversial
    • RE: Family Info Board

      @bhepler

      Sorry just got back from a work trip to Europe. Yes the Family loves the board. Already have made several improvements, and have several more ideas we want to try. I had bought an additional Raspberry Pi to play with and successfully set up Alexa, so I think that is the next major add to the info board.

      After telling a few at work about the idea two more guys have set up a similar board at their place, and their families love it as well.

      posted in Showcase
      W
      Wedee
    • RE: Family Info Board

      It is added just below the config: {

      Like this…

      {
      	module: 'MMM-Wunderlist',
              position: 'top_right',  // This can be any of the regions. Best results in left or right regions.
              header: 'XXX', // This is optional
              config: {
                  accessToken: 'xxxxxxx',
      	    clientID: 'xxxxxxx',
      	    lists: ["XXXX"],
      	    fade: false,
      	    interval: "120"
      		      }
      },
      
      posted in Showcase
      W
      Wedee
    • RE: Family Info Board

      To get to the API spot use the shortcuts “Here” located in the config section…

      https://github.com/paviro/MMM-Wunderlist

      As to what you want to fill in use this topic for assistance…

      https://forum.magicmirror.builders/topic/388/wunderlist-acess-token

      posted in Showcase
      W
      Wedee
    • RE: Family Info Board

      @ooom416354

      Not sure if the generic US Holiday calendar can be added to, but you could create a new Dates to remember calendar and add the US holidays into it.

      Wunderlist is pretty easy to use both the actual app, and adding in the module. Just be sure that you name your shared lists differently than the default ones… Grocery’s for example gets created on everybody’s account at setup… You need to add things to the shared list if you want it to show up.

      posted in Showcase
      W
      Wedee
    • RE: Family Info Board

      @ooom416354

      Dates to Remember is a shared google calendar. Running 4 shared calendars one each for wife, kid and me, and then the Dates to remember calendar.

      The sticky notes, chores, grocery list are shared Wunderlist lists.

      With the Wunderlist apps on our phones we can add or checkoff items. Kid wants more Ramen Noodles he can add to the grocery list Etc.

      posted in Showcase
      W
      Wedee
    • RE: Patience while learning .css - why does the following not work in my custom.css

      Yes I am unsure as well…

      Playing with custom.css last week it seemed like they were defining a name to be used elsewhere and I found I didn’t need it… Depending upon the module and if the tags are unique it appears you do not need to call the module either… .time, .date
      vs
      .clock .time, .clock .date

      I include any style I wanted to do in the same group…

      I did need it when i defined a table for a background.

      For example…

      .calendar_monthly, div#module_6_calendar_monthly table.small {
      width: 550px;
      background-color: rgba(63, 182, 236, 0.23);
      border-radius: 7px;
      padding: 10px;
      }
      .calendar, div#module_7_calendar {
      width: 550px;
      font-size: 26px;
      }

      Sorry I am not more technical on it… Just what i found worked for me last week.

      posted in Development
      W
      Wedee
    • RE: Patience while learning .css - why does the following not work in my custom.css

      Try

      .clock .time, .clock .date {
      color: #628;
      }

      or

      .time, .date {
      color: #628;
      }

      posted in Development
      W
      Wedee
    • RE: Stupid Question: List of Module 'areas'

      @valid8r

      If you are talking about the regions for placing the modules in the config.js see the post…

      https://forum.magicmirror.builders/topic/286/regions

      posted in General Discussion
      W
      Wedee
    • RE: showHumidity

      Looking at currentweather.js the degree symbol is not declared, and the symbol is only being appended to the temperature “&deg”.

      var temperature = document.createElement(“span”);
      temperature.className = “bright”;
      temperature.innerHTML = " " + this.temperature + “°”;
      large.appendChild(temperature);

      So I guess there are two options. Change it to use the icon from the icon package, or change the color of the symbol.

      Sorry don’t have a direct answer, but might find some time to play and see if I can make it work. Someone heer should know exactly what to change.

      Thanks,

      posted in Troubleshooting
      W
      Wedee
    • RE: News feed not working

      You need to use the RSS feed address.

      Goto - http://www.ara.cat/rss.html and choose the topic you are interested in showing.

      You should end up with an address like…

      http://www.ara.cat/rss/politica/

      posted in Troubleshooting
      W
      Wedee
    • RE: showHumidity

      I believe it comes from the Icon Package source.

      https://erikflowers.github.io/weather-icons/

      In the vendor/weather-icon/ folder he is loading erikflowers weather icon package.

      On that page “Link Above” there is a wi-degrees icon.

      Does it work?

      posted in Troubleshooting
      W
      Wedee
    • RE: showHumidity

      Yes it appears both utilize the same icon table, so it should work.

      each entry should be…

      .MODULENAME .ICONNAME {
      color: XXXX;
      }

      For each color you can do it several ways… check out http://www.w3schools.com/colors/colors_names.asp for the options on colors I find it easier to use the names vs the color hex codes or RBG values.

      color: white;

      posted in Troubleshooting
      W
      Wedee
    • RE: showHumidity

      Add…

      .currentweather .wi-sunrise {
      color: #ff0;
      }
      .currentweather .wi-sunset {
      color: #eb0;
      }
      .currentweather .wi-night-showers {
      color: #07f;
      }
      .currentweather .wi-degrees {
      color: #415;
      }
      .currentweather .wi-rain {
      color: #00f;
      }
      .currentweather .wi-showers {
      color: #07f;
      }
      .currentweather .wi-night-showers {
      color: #07f;
      }
      .currentweather .wi-night-alt-cloudy-windy {
      color: #aaa;
      }
      .currentweather .wi-night-cloudy {
      color: #aaa;
      }
      .currentweather .wi-cloudy {
      color: #aaa;
      }
      .currentweather .wi-day-cloudy {
      color: #aaa;
      }
      .currentweather .wi-cloudy {
      color: #aaa;
      }
      .currentweather .wi-cloudy-windy {
      color: #aaa;
      }
      .currentweather .wi-showers {
      color: #00f;
      }
      .currentweather .wi-thunderstorm {
      color: #ff0;
      }
      .currentweather .wi-snow {
      color: #fff;
      }
      .currentweather .wi-fog {
      color: #999;
      }
      .currentweather .wi-night-clear {
      color: #fff;
      }
      .currentweather .wi-night-rain {
      color: #00f;
      }
      .currentweather .wi-night-thunderstorm {
      color: #ff0;
      }
      .currentweather .wi-night-snow {
      color: #fff;
      }

      to your custom.css file.

      posted in Troubleshooting
      W
      Wedee
    • RE: Screen Margins?

      Try modifying the custom.css and add…

      body {
      margin: 0px;
      height: 100%;
      width: 100%;
      }

      Reboot and see what you get. custom.css is where you should add the code as its loaded last and overrides the settings in the specific css files. This way you can update modules and not lose any custom work.

      posted in Troubleshooting
      W
      Wedee
    • RE: Family Info Board

      Thanks, I was quite please with the feel.

      Yes I was concerned it was a bit cluttered but on a 29" monitor the sizing looks good, and the margins / padding seem pretty good. As its a Christmas gift for the wife and she has not seen it, I know that she will have input and want changes after Christmas. For now I have a functional board that does what I intended, and I am much better versed in making changes in css as well as installation and configuration of the modules. I imagine once she gets involved it will look very different the end of January.

      posted in Showcase
      W
      Wedee
    • Family Info Board

      Hello all,

      Thanks to Michael for his development of the Magic Mirror.

      I had grabbed a Pi to give it a go as a cheap media player. As I was impressed with this little wonder I started looking at what else was I might be able to do with it. Low and behold the magic mirror popped up. I wasn’t interested in a mirror but as a simple family info board it would work quite nicely.

      Needed a gift for the wife, and decided that would give me reason to purchase another PI. So I loaded up and started playing. Here is what I came up with (Thanks to many others on the forums as a gleaned info from so many places).

      0_1481164007673_no_sonos.jpg

      0_1481164030405_sonos.jpg

      Added Modules
      MMM-FAA-Delay
      MMM-Nest
      MMM-Wunderlist
      sonos
      calendar_monthly
      as well as a few tweaks to the Calendar module and a custom.css

      Thanks

      EDIT 10/20/2018
      **Sorry all - with the Family Info Board working so well I haven’t visited the forums for quite a while and didn’t realize that my notifications were off. Here is the Background
      0_1540059761782_bg2.jpg

      Here is the custom CSS

      /*****************************************************
       * Magic Mirror                                      *
       * Custom CSS                                        *
       *                                                   *
       * By Michael Teeuw http://michaelteeuw.nl           *
       * MIT Licensed.                                     *
       *                                                   *
       * Add any custom CSS below.                         *
       * Changes to this files will be ignored by GIT. *
       *****************************************************/
      
      header {
        text-transform: uppercase;
        font-size: 26px;
        font-family: "Roboto Condensed";
        font-weight: 600;
        border-bottom: 1px solid white;
        line-height: 15px;
        padding-bottom: 5px;
        margin-bottom: 10px;
        color: cadetblue;
      }
      
      body {
        margin: 60px;
        position: absolute;
        height: calc (100% - 120px);
        width: calc (100% - 120px);
        background-image: url('bg2.jpg');
        background-repeat: no-repeat;
        background-size: 1920;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 400;
        font-size: 2em;
        line-height: 1.5em;
        -webkit-font-smoothing: antialiased;
      }
      
      .MMM-Wunderlist, div#module_9_MMM-Wunderlist {
      	width: 550px;
      }
      
      .calendar_monthly, div#module_6_calendar_monthly table.small {
          width: 550px;
      	background-color: rgba(63, 182, 236, 0.23);
          border-radius: 7px;
      	padding: 10px;
      	}
      .calendar, div#module_7_calendar {
      	width: 550px;
      	font-size: 26px;
      }
      
      .MMM-Nest, div#module_8_MMM-Nest {
      	width: 550px;
      }
      
      .MMM-FAA-Delay, div#module_11_MMM-FAA-Delay {
      	width: 550px
      	color: white;
      	font-size: 26px;
      }
      .calendar .time {
        color: white;
        width: 150px;
        padding-left: 10px;
        text-align: right;
        font-size: 75%;
      }
      .calendar .title, .hourv, .clock .date {
       	color: white;
      }
      .dimmed { 
      	color: lavender;
      }
      .normal {
      	color: cadetblue;
      }
      .bright {
      	color: white;
      }
      .clock .time {
        	color: white;
      	font-size: 100px;
      	padding-top: 25px;
      	padding-bottom: 25px;
      }
      .currentweather .wi-sunrise {
        	color: #ff0;
      }
      .currentweather .wi-sunset {
        	color: #eb0;
      }
      .currentweather .wi-night-showers {
              color: #07f;
      }
      .currentweather .wi-degrees {
              color: #415;
      }
      .currentweather  .wi-rain {
              color: #00f;
      }
      .currentweather  .wi-showers {
              color: #07f;
      }
      .currentweather  .wi-night-showers {
              color: #07f;
      }
      .currentweather  .wi-night-alt-cloudy-windy {
              color: #aaa;
      }
      .currentweather  .wi-night-cloudy {
              color: #aaa;
      }
      .currentweather  .wi-cloudy {
              color: #aaa;
      }
      .currentweather  .wi-day-cloudy {
              color: #aaa;
      }
      .currentweather  .wi-cloudy {
              color: #aaa;
      }
      .currentweather  .wi-cloudy-windy {
              color: #aaa;
      }
      .currentweather  .wi-showers {
              color: #00f;
      }
      .currentweather  .wi-thunderstorm {
              color: #ff0;
      }
      .currentweather  .wi-snow {
              color: #fff;
      }
      .currentweather  .wi-fog {
              color: #999;
      }
      .currentweather  .wi-night-clear {
              color: #fff;
      }
      .currentweather  .wi-night-rain {
              color: #00f;
      }
      .currentweather  .wi-night-thunderstorm {
              color: #ff0;
      }
      .currentweather  .wi-night-snow {
              color: #fff;
      }
      .airport .code {
          font-size: 32px;
      }
      .airport .message {
          font-size: 26px;
      }
      .airport .weather {
      	font-size: 20px;
      }
      
      

      Please keep in mind that this has not been updated from 2016, and may or may not have issue with the latest versions.

      Currently updating (Today) to the latest of everything and its time for a change in look…

      posted in Showcase
      W
      Wedee
    • 1 / 1