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

    Posts

    Recent Best Controversial
    • HERE’S THE FIRST PERSON TO PUT A PI IN THE RASPBERRY PI KEYBOARD

      https://howchoo.com/g/zgmzytq1mmy/raspberry-pi-in-official-pi-keyboard

      posted in Tutorials
      justjim1220J
      justjim1220
    • RE: MMM-DigitalAlarmClock Upcoming alarm Format

      @RecklessOne

      This is fixed now.
      Apologies for taking so long
      Please do a git pull && npm i
      Thank You

      0_1553485769490_Screenshot (26).png

      0_1553485779267_Screenshot (27).png

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-AI

      @ejay-ibm

      You might be interested in the following links:

      https://avatarsdk.com/?_ga=2.125796682.1526809898.1553040863-987282811.1553040863

      https://api.avatarsdk.com/samples/web/#

      https://api.avatarsdk.com/

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: MMM-AI

      @ejay-ibm

      I would be interested in Max Headroom, with his tourette-style glitches included!!!

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: MMM-AI

      @ejay-ibm

      Would it be possible for the user to change the avatar to their personal likeness?

      For example, be able to use a family member’s face, or an actor/actress, a cartoon character, etc. ?

      Or like the HAL2000, maybe the Alexa bar or circle animations?

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: Verse Smartmirror

      @Sean

      https://www.youtube.com/watch?v=AGbfaadASVk

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: Is there a way to temporarily disable a module?

      @teitlebot add disabled: true, to the modules in your config.js file

      for example:

      {
      	disabled: true,
      	module: "MMM-KitchenTimer",       
      	position: "top_center",
      	config: {
      		volume: 1
      	}
      },
      

      change it to false to re-enable the module…

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: Acer Aspire z3101 Screen [Requesting Info]

      @Seann I once had MM set up on an HP all-in-one pc and it worked just fine

      posted in Hardware
      justjim1220J
      justjim1220
    • RE: MMM-Astro [formly MMM-Astrology]

      @mykle1

      Yes Sir! :slightly_smiling_face:

      I sure wish I could do the things he does! :upside-down_face:

      posted in Entertainment
      justjim1220J
      justjim1220
    • RE: Considering taking donations to support the MagicMirror project. Interested in your thoughts!

      @agp42
      That’s assuming all the registered members are all still active members.
      but, I like your thinming on this!:winking_face:

      posted in MagicMirror
      justjim1220J
      justjim1220
    • RE: MMM-Astro [formly MMM-Astrology]

      @cowboysdude

      Great Improvement!!!

      But, of course, you seem to always strive for excellence! :winking_face:

      posted in Entertainment
      justjim1220J
      justjim1220
    • RE: Best way to display recipe

      @rts58

      you might look at MMM-Recipe by @cowboysdude

      I am currently using for my Kitchen MM display (not mirrored)

      posted in Development
      justjim1220J
      justjim1220
    • RE: MMM-ToDoLive

      @mykle1

      I have been looking for something exactly like this for my kitchen info mirror.

      Messages and things to do and grocery list!!! :grinning_face_with_smiling_eyes:

      Love It!!!

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: MMM-ToDoLive

      @mykle1

      This is freaking awesome Mykle!

      posted in Fun & Games
      justjim1220J
      justjim1220
    • RE: My Family Info Board

      @mykle1

      What module is that one at the top right? The “things to do”?

      posted in Show your Mirror
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      I just did added this to the calendar config and it changed it automatically:

          {
              module: "calendar",
      	position: "top_left",	// This can be any of the regions. Best results in left or right regions.
      	config: {
      		language: "fr",
      		timezone: "France/Paris"
      	}
          },
      
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      you will also need to add this to your start section:

      / /Set locale.
      moment.updateLocale(config.language, this.getLocaleSpecification(config.timeZone));
      
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil after you add all that I posted, in your config file the use can add the timezone and language they want to use.

      {
          module: "calendar",
          position: "top_left",
          config: {
              language: "en",
              timezone: "Norway/Oslo"
          }
      },
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      for timezone:
      Add this to your defaults in the modules js: timezone: "America/Chicago"

      Then add this in the code:

       getScripts: function() {
      	return [ 
                  "moment.js", "moment-timezone.js"
              ];
      },
      

      and this:

      var now = moment();
      	if (this.config.timezone) {
      	now.tz(this.config.timezone);
      }
      posted in Development
      justjim1220J
      justjim1220
    • RE: access to config language setting

      @sdetweil

      All I can find is to put this in your js file:

      getTranslations: function() {
      	return {
      		en: "translations/en.json",
      		de: "translations/de.json"
      	}
      }
      
      posted in Development
      justjim1220J
      justjim1220
    • 1
    • 2
    • 3
    • 4
    • 5
    • 32
    • 33
    • 3 / 33