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

    Posts

    Recent Best Controversial
    • RE: Magic Mirror for Events

      @6447858

      A bit more details are needful to realize what kind of mirror with what kind of module or possibilities this mirror must be developed.

      What dimensions?

      posted in General Discussion
      lolobyteL
      lolobyte
    • RE: MMM-Remote-Control after upd MM to 2.1.0

      @Jopyth

      Hi,

      This system doesen’t let me upload some file for you.

      The this way.
      Here is the sample config with issues.

      /* Magic Mirror Config Sample
      *

      • By Michael Teeuw http://michaelteeuw.nl
      • MIT Licensed.
        */

      var config = {
      port: 8080,
      ipWhitelist: [
      “127.0.0.1”,
      “::ffff:127.0.0.1”,
      “::1”,
      “::ffff:192.168.1.1/24”,
      ],
      language: ‘de’,
      timeFormat: 24,
      units: ‘metric’,

      modules: [
      	{
      		module: 'alert',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      	},
      	{
      		module: "updatenotification",
      		position: "top_center",
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      	},
      	{
      		module: 'MMM-Advent',
      		position: 'bottom_center',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: true,
      		config: {
      			updateInterval: 10 * 60 * 1000,
      			marks: 0, //default is 24
      			height: 300,
      			showFlameBeforeStart: false,
      //			start: ["2016-11-27 00:00:01", "2016-12-11 00:00:01", "2016-12-18 00:00:01", "2016-12-04 00:00:01"],
      //			end: ["2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59"],
      			start: "2016-01-01 00:00:01", //Geburtstag Anfang
      			end: "2016-01-01 23:59:59", //Geburtstag Ende
      //			start: "2016-12-01 00:00:01", //Eine Kerze; default is "2016-12-01 08:00:00"
      //			end: "2016-12-24 23:59:59", //Eine Kerze; default is "2016-12-24 22:00:00"
      			enableAnimation: true,
      			fontColor: "#000000", //default is #000000 (black)
      			candleColor: "#FFFFFF", //default is #FFFFFF (white)
      			}
      	},
      	{
      		module: 'helloworld',
      		position: 'bottom_bar',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: true,
      		config: {
      			text: 'Alles Gute!',
      			}
      	},{
      		module: 'clock',
      		position: 'top_left',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      		config: {
      			displaySeconds: true,
      			clockBold: false,
      			showDate: true,
      			displayType: 'digital', // Possible values: digital, analog, or both
      			analogSize: '190px',
      			analogFace: 'face-012', // 'simple' border, none, or face-### (value between 001 and 012)
      			analogPlacement: 'right', // top, right, bottom, or left
      			analogShowDate: 'top', // false, top or bottom
      			secondsColor: '#888888', // any HTML RGB Color
      	//		timezone: 'Etc/GMT+10', // America/New_York, America/Santiago, Etc/GMT+10
      			}
      	},
      	{
      		module: 'MMM-Remote-Control',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      	//	uncomment the following line to show the URL of the remote control on the mirror
      		position: 'top_center'
      	//	you can hide this module afterwards from the remote control itself
      	},
      ]
      

      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== ‘undefined’) {module.exports = config;}

      and this one wich is running.

      /* Magic Mirror Config Sample
      *

      • By Michael Teeuw http://michaelteeuw.nl
      • MIT Licensed.
        */

      var config = {
      port: 8080,
      ipWhitelist: [
      “127.0.0.1”,
      “::ffff:127.0.0.1”,
      “::1”,
      “::ffff:192.168.1.1/24”,
      ],
      language: ‘de’,
      timeFormat: 24,
      units: ‘metric’,

      modules: [
      	{
      		module: 'alert',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      	},
      	{
      		module: "updatenotification",
      		position: "top_center",
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      	},
      	{
      		module: 'MMM-Advent',
      		position: 'bottom_center',
      		classes: 'small bright', // Add your own styling. Optional.
      	//	disabled: true, // verursacht Fehler in MMM-Remote-Control Modul
      		config: {
      			updateInterval: 10 * 60 * 1000,
      			marks: 0, //default is 24
      			height: 300,
      			showFlameBeforeStart: false,
      //			start: ["2016-11-27 00:00:01", "2016-12-11 00:00:01", "2016-12-18 00:00:01", "2016-12-04 00:00:01"],
      //			end: ["2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59", "2016-12-24 23:59:59"],
      			start: "2016-01-01 00:00:01", //Geburtstag Anfang
      			end: "2016-01-01 23:59:59", //Geburtstag Ende
      //			start: "2016-12-01 00:00:01", //Eine Kerze; default is "2016-12-01 08:00:00"
      //			end: "2016-12-24 23:59:59", //Eine Kerze; default is "2016-12-24 22:00:00"
      			enableAnimation: true,
      			fontColor: "#000000", //default is #000000 (black)
      			candleColor: "#FFFFFF", //default is #FFFFFF (white)
      			}
      	},
      	{
      		module: 'helloworld',
      		position: 'bottom_bar',
      		classes: 'small bright', // Add your own styling. Optional.
      	//	disabled: true, // verursacht Fehler in MMM-Remote-Control Modul
      		config: {
      			text: 'Alles Gute!',
      			}
      	},{
      		module: 'clock',
      		position: 'top_left',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      		config: {
      			displaySeconds: true,
      			clockBold: false,
      			showDate: true,
      			displayType: 'digital', // Possible values: digital, analog, or both
      			analogSize: '190px',
      			analogFace: 'face-012', // 'simple' border, none, or face-### (value between 001 and 012)
      			analogPlacement: 'right', // top, right, bottom, or left
      			analogShowDate: 'top', // false, top or bottom
      			secondsColor: '#888888', // any HTML RGB Color
      	//		timezone: 'Etc/GMT+10', // America/New_York, America/Santiago, Etc/GMT+10
      			}
      	},
      	{
      		module: 'MMM-Remote-Control',
      		classes: 'small bright', // Add your own styling. Optional.
      		disabled: false,
      	//	uncomment the following line to show the URL of the remote control on the mirror
      		position: 'top_center'
      	//	you can hide this module afterwards from the remote control itself
      	},
      ]
      

      };

      /*************** DO NOT EDIT THE LINE BELOW ***************/
      if (typeof module !== ‘undefined’) {module.exports = config;}

      [0_1483538699038_config.js.bak-abgespeckt_01](Uploading 100%)

      [0_1483538731854_config.js.bak_abgespeckt_02](Uploading 100%)

      0_1483538842784_TXT_compair (Small).JPG

      posted in Troubleshooting
      lolobyteL
      lolobyte
    • RE: disable NO signal message

      @yawns

      They work and do whats the must.

      You can adjust the volume, brightness, contrast and so on.
      The raspi recognize the right resolution and the depth of your mirror is very small.

      A result you have a very thin MagicMirror. Approx. the thickness of a raspi.

      posted in Hardware
      lolobyteL
      lolobyte
    • RE: MMM-DWD-WarnWeather - Wetterwarnungen

      @LukeCodewalker

      Hi, thank you for your answer.

      this is a part of my custom.css

      .MMM-DWD-WarnWeather .description {
      font-family: Roboto;
      margin-left: 10px;
      color: white; //white
      padding-left: 50px;
      padding-top: 3px;
      color: #fff; //fff
      width: auto;
      font-size: 25px;
      line-height: 30px;
      text-align: left;
      }

      i can make some changes, but not wit all commands.

      for example.

      if i use

      color: red;

      nothing changes

      when i use

      color: #f00; //fff

      the color change.

      if is try to use

          font-size: 10px;
          line-height: 10px;
      

      nothing happens.

      What’s wrong?

      posted in Utilities
      lolobyteL
      lolobyte
    • RE: disable NO signal message

      @Deniz

      Hi, the screen i used, is a old monitor from a Lenovo G670 and one from a Pacard Bell PEW96

      I use for each one a controller from eBay to to use them with the raspi.

      HDMI+DVI+VGA+Audio LCD Controller Kit for 15.6" B156XW02 V.2 LED Panel 1366x768

      HDMI+DVI+VGA+Audio Controller Board Driver Kit for LTN156AT05 LTN156AT02

      0_1483528126366_IMG_0869 (Small).JPG

      posted in Hardware
      lolobyteL
      lolobyte
    • RE: MMM-Remote-Control after upd MM to 2.1.0

      @AAPS

      Hello,

      No, it’s surly only a example for one Module.

      It was my intention with the command
      disabled: true,

      to quick disable a module in the config.js and not to comment out all single module step.

      The problem with the remote module is, the modules aren’t really disabled, they running in the background an slow down the system.!

      posted in Troubleshooting
      lolobyteL
      lolobyte
    • RE: disable NO signal message

      @bibi

      You cam manage boot options in raspi-config if you don’t have install jessi light.

      execute following command.

      sudo raspi-config

      chose menu point

      3 Boot Options
      3B Splash Screen

      and activate it wit “YES”

      save and reboot with

      sudo reboot
      Next topic:
      My screen show me a message with no signal for approx. 5 sec.
      After that, the screen is complete black and off.

      posted in Hardware
      lolobyteL
      lolobyte
    • RE: Where are you from?

      @CGaZ3

      ???

      posted in General Discussion
      lolobyteL
      lolobyte
    • RE: [Remote-Control] Shutdown, Configure and Update your MagicMirror

      @AAPS

      see my last post in this part of the forum.

      https://forum.magicmirror.builders/topic/1320/mmm-remote-control-after-upd-mm-to-2-1-0/10

      posted in System
      lolobyteL
      lolobyte
    • RE: MMM-DWD-WarnWeather - Wetterwarnungen

      @ostfilinchen

      oh, then tell me please how is it actually possible to increase the text and format the date.

      posted in Utilities
      lolobyteL
      lolobyte
    • 1
    • 2
    • 16
    • 17
    • 18
    • 19
    • 20
    • 29
    • 30
    • 18 / 30