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

    Posts

    Recent Best Controversial
    • RE: MMM-iFrame-Ping in two different page

      Someone help me please? :crying_face:

      posted in Troubleshooting
      E
      Egnos
    • MMM-iFrame-Ping in two different page

      Hi everyone,
      I have some problems with the MMM-iFrame-Ping module, I explain:
      Right now my Magic Mirror rotates on three pages. On each page I call up the module to view various news, in this way:

      {
      		module: 'MMM-iFrame-Ping',
      		//position: 'middle_center',	// This can be any of the regions.
      		pages: {Welcome: "middle_center"},
      		config: {
      			// See 'Configuration options' for more information.
      			url: "xxxxxxxxxx",
      			//height:"100%", 
      			//width:"100%",
      			autoRefresh: false, //set to false for video
      			updateInterval: 1, //in min. Only if autoRefresh: true
      			displayLastUpdate: false,
      			width: "50%", // Optional. Default: 100%
      			height: "500px", //Optional. Default: 100px
      			scrolling: "no" 
      				}
      		},
      
      		{
      		module: 'MMM-iFrame-Ping',
      		//position: 'middle_center',	// This can be any of the regions.
      		pages: {Sport: "middle_center"},
      		config: {
      			// See 'Configuration options' for more information.
      			url: "xxxxxxxxxx",
      			//height:"100%", 
      			//width:"100%",
      			 autoRefresh: false, //set to false for video
      			updateInterval: 1, //in min. Only if autoRefresh: true
      			displayLastUpdate: false,
      			width: "50%", // Optional. Default: 100%
      			height: "500px", //Optional. Default: 100px			
      			scrolling: "no" 
      				}
      		},
      

      When the MM starts on the first page the video is shown, when it rotates on the second page the video does not start and I only hear the audio.
      The iFrame that starts is always the first that is loaded, on the second page it always hears the audio.
      I checked the URLs and they are working properly.

      Can you help me?

      Many thanks!

      posted in Troubleshooting
      E
      Egnos
    • RE: MMM-Lunartic

      For you:

      {
      "Distance from Earth's core = ": "Distanza dal nucleo della Terra",
      "Distance from sun = ": "Distanza dal Sole",
      "The next full moon is ": "La prossima Luna piena è",
      "The next new moon is ": "La prossima Luna nuova è",
      "The current moon is ": "La fase lunare corrente è",
      "The moon is ": "La Luna è",
      "% illuminated": "% illuminata",
      " days old": "Giorni trascorsi",
      "New Moon Phase": "Luna Nuova",
      "Waxing Crescent Moon": "Luna Crescente",
      "First Quarter Half Moon": "Primo Quarto di Luna",
      "Waxing Gibbous Moon": "Luna Gibbosa Crescente",
      "Full Moon": "Luna Piena",
      "Waning Gibbous Moon": "Luna Gibbosa Calante",
      "Third Quarter Half Moon": "Ultimo Quarto di Luna",
      "Waning Crescent Moon": "Luna Calante",
      "When the Moon hits your eye . . .": "Quando la Luna illumina i tuoi occhi..."
      }
      

      @Mykle1 said in MMM-Lunartic:

      Are you using a Pi? I think the PSEye cam works well from what I’ve read here. I really don’t know. I don’t use Pi’s any longer.

      No, now for convenience I’m using a virtual machine with VirtualBox, could it work?

      posted in Education
      E
      Egnos
    • RE: Move a module with custom.css

      Ok then I try!
      Thanks guys for the support. :winking_face:

      posted in Development
      E
      Egnos
    • Move a module with custom.css

      Hello to all,
      I’m a beginner and I can’t move to positions other than the standard settable ones in config.js.
      For example “top_bar”, “bottom_bar”, “upper_third”, etc…

      I tried to build a “custom.css” to move the “mmm-suncalc” module down (the module pictured below left), as shown in the following image:

      2020-03-05-163618-1600x795-scrot-MOD

      Here is the custom.css that I made:

      /*****************************************************
       * 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: 15px;
        font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
        font-weight: 400;
        border-bottom: 1px solid #666;
        line-height: 15px;
        padding-bottom: 5px;
        margin-bottom: 10px;
        color: #999;
      }
      
      body {
        margin: 60px;
        position: absolute;
        height: calc(100% - 120px);
        width: calc(100% - 120px);
        background: #000;
        color: #aaa;
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 400;
        font-size: 2em;
        line-height: 1.5em;
        -webkit-font-smoothing: antialiased;
       }
      
      .mmm-suncalc, div#module_7_mmm-suncalc {
      	position: absolute;
      	top: 100px;
      	left: 30px;
      	bottom: 10px;
      	padding-left: 10px;
      }
      

      But the form does not move!

      Where am I wrong?
      Can you help me?

      Thanks so much.

      posted in Development
      E
      Egnos
    • RE: MMM-iFrame-Ping

      Thank you very much to the developer for the excellent work!

      I would have a problem:
      In my MM I call the “MMM-iFrame-Ping” module twice, it appear on two different pages.
      The problem is if I want to set two different sizes.
      For some reason the size of one module affects the other, not allowing to have two distinct measures.

      Here is my config.js:

      		{
      		module: 'MMM-iFrame-Ping',
      		//position: 'middle_center',	// This can be any of the regions.
      		pages: {Welcome: "middle_center"},
      		config: {
      			// See 'Configuration options' for more information.
      			url: "xxxxxxxxxx",
      			//height:"100%", 
      			//width:"100%",
      			autoRefresh: false, //set to false for video
      			updateInterval: 1, //in min. Only if autoRefresh: true
      			displayLastUpdate: false,
      			width: "50%", // Optional. Default: 100%
      			height: "500px", //Optional. Default: 100px
      			scrolling: "no" 
      				}
      		},
      
      		{
      		module: 'MMM-iFrame-Ping',
      		//position: 'middle_center',	// This can be any of the regions.
      		pages: {Sport: "middle_center"},
      		config: {
      			// See 'Configuration options' for more information.
      			url: "xxxxxxxxxx",
      			//height:"100%", 
      			//width:"100%",
      			 autoRefresh: false, //set to false for video
      			updateInterval: 1, //in min. Only if autoRefresh: true
      			displayLastUpdate: false,
      			width: "30%", // Optional. Default: 100%
      			height: "350px", //Optional. Default: 100px			
      			//width: "50%", // Optional. Default: 100%
      			//height: "500px", //Optional. Default: 100px
      			scrolling: "no" 
      				}
      		},
      

      Does it happen to you too?
      Is this behavior correct?

      I hope I explained myself!

      Thanks.

      posted in Utilities
      E
      Egnos
    • RE: MMM-Lunartic

      HI @Mykle1
      I don’t know why but the module started working!
      I have some questions:

      • How should I modify the config.js to not display the image of the moon but only the text?

      • I am Italian, how can I translate the text?

      • If you want to use “Hello Lucy” to call up the page with my voice, could you recommend a good microphone?

      Thank you so much for your patience.:winking_face:

      posted in Education
      E
      Egnos
    • RE: MMM-MyCommute

      @sdetweil said in MMM-MyCommute:

      @Egnos

      This API project is not authorized to use this API.

      seems pretty clear… the api Project you selected, doesn’t authorize use of the API…

      open the google developers console, find the api project and check for the api… maybe Javascript

      Dear @sdetweil.
      Thee same behavior also has it @wagon40, I thought it was something about the module…but if you’re sure it’s just an API problem … I’ll do a check!

      Thanks.

      posted in Transport
      E
      Egnos
    • RE: MMM-Lunartic

      @Mykle1 Hello Lucy allows you to create pages like MMM-Page Selector?

      Is it possible to change the pages automatically after a set time?

      Many thanks @Mykle1.

      PS: I try your advice as soon as possible!👍

      posted in Education
      E
      Egnos
    • RE: MMM-MyCommute

      Is anybody there? 🤔

      posted in Transport
      E
      Egnos
    • 1 / 1