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

    Posts

    Recent Best Controversial
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @sdetweil thanks. I finally got this module the way I wanted. On to the next one!

      posted in Utilities
      M
      motdog
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      Ive got it up but when I change “table” to “tiled” I get a config error when I restart.

      When I add units: us I get an error. Ugh.

      This works```
      //your cod {
      module: “MMM-DarkSkyForecast”,
      header: “Weather”,
      position: “top_right”,
      classes: “default everyone”,
      disabled: false,
      config: {
      apikey: “*********”,
      latitude: “38.751389”,
      longitude: “-90.565948”,
      iconset: “4c”,
      concise: true,
      forecastLayout: “table”
      }
      },e here

      
      this doesnt 
      
      

      {
      module: “MMM-DarkSkyForecast”,
      header: “Weather”,
      position: “top_right”,
      classes: “default everyone”,
      disabled: false,
      config: {
      apikey: “*******”,
      latitude: “38.751389”,
      longitude: “-90.565948”,
      iconset: “4c”,
      concise: true,
      units: us,
      forecastLayout: “table”
      }
      },

      posted in Utilities
      M
      motdog
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @j-e-f-f thats what I thought. Im just having all sorts of weird issues with both weather modules. I may just need to redo them

      posted in Utilities
      M
      motdog
    • RE: Compliments config

      @sdetweil ok I am so confused. I took an existing list of compliments and saved/edited it. I then saved it as a .json file (or so I thought) . I went to the default modules folder and changed remote folder from null to that web address.

      I thought that was the way to go about it. Never created anything in github before. so Im grasping at straws

      posted in Troubleshooting
      M
      motdog
    • RE: Compliments config

      I went out and found https://gist.github.com/ryck/e28a69665b8839f6e9a7acd6b4acc97d (which is awesome)

      I modified and removed what I didn’t want, but I left the weather stuff in even though I haven’t configured the default weather module.

      I then created https://github.com/motdog/compliments/blob/master/compliments.json

      I went into compliments.js and at remote file removed null and added that link followed by a comma.

      It didn’t run when I restarted my mirror. Do I need to change anything on main config.

      Module.register("compliments", {
      
      	// Module config defaults.
      	defaults: {
      		compliments: {
      			anytime: [
      				"Hey there sexy!"
      			],
      			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!"
      			]
      		},
      		updateInterval: 30000,
      		remoteFile: https://github.com/motdog/compliments/blob/master/compliments.json,
      		fadeSpeed: 4000,
      		morningStartTime: 3,
      		morningEndTime: 12,
      		afternoonStartTime: 12,
      		afternoonEndTime: 17
      	},
      

      Thanks for the help

      posted in Troubleshooting
      M
      motdog
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      @sdetweil I tried that & could not get dark sky to show up at all. That’s why I am confused

      posted in Utilities
      M
      motdog
    • RE: MMM-DarkSkyForecast - Yet ANOTHER weather module

      dumb question I’m sure but when placing this in the config.js I should get rid of the default weather program, right?

      posted in Utilities
      M
      motdog
    • RE: Changed a few compliments, hosed it up - not fixed, still hosed

      Still hosed…

      
      				]
      			}
      		},
      
      		{
          module: 'MMM-Remote-Control',
          // uncomment the following line to show the URL of the remote control on the mirror
            position: 'bottom_right',
          // you can hide this module afterwards from the remote control itself
          config: {
              customCommand: {},  // Optional, See "Using Custom Commands" below
              customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below
              showModuleApiMenu: true, // Optional, Enable the Module Controls menu
              apiKey: "",         // Optional, See API/README.md for details
          }
      },
      
      
      		{
      			module: "compliments",
      			position: "lower_third"
      
      			
      		},
      		
      		
      
      {
      
      posted in Troubleshooting
      M
      motdog
    • RE: Changed a few compliments, hosed it up - not fixed, still hosed

      no I don’t ugh. cant figure out what I am missing. Here is compliment config and main config. I went back to the original compliment config thinking once I got that straight I could slowly add to it. NOPE.

      Compliments

      Module.register("compliments", {
      
      	// Module config defaults.
             config:  {
      		compliments: {
      			anytime: [
      			"Hey there sexy!"
      		],
      		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!"
      		]
      	
      }
      }
      
      		
      		updateInterval: 30000,
      		remoteFile: null,
      		fadeSpeed: 4000,
      		morningStartTime: 3,
      		morningEndTime: 12,
      		afternoonStartTime: 12,
      		afternoonEndTime: 17
      	},
      
      

      Main config

      
      	language: "en",
      	timeFormat: 12,
      	units: "Imperial",
      
      	modules: [
      		{
      			module: "alert",
      		},
      		{
      			module: "updatenotification",
      			position: "top_bar"
      		},
      		{
      			module: "clock",
      			position: "top_left"
      		},
      		{
      			module: "calendar",
      			
      			position: "top_left",
      			config: {
      				calendars: [
      					{
      						symbol: "calendar-check",
      						url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      					},
      					
      					{
      						symbol: "calendar-check",
      						url: "https://calendar.google.com/calendar/ical/1ci28ki5g1pn81org2g92fxxxxxl%40import.calendar.google.com/public/basic.ics"
      
      					},
      						
      					{
      						symbol: "calendar-check",
      						url: "http://ical-cdn.teamsnap.com/team_schedule/d8dbcf70-3b1e-0133-4d58-3c764xxxxxx.ics"
      
      					},
      
      					{
      						symbol: "calendar-check",
      						url: "http://ical-cdn.teamsnap.com/team_schedule/7xxxxxxx-8341-27d64356a68b.ics"
      
      					},
      
      				]
      			}
      		},
      
      		{
          module: 'MMM-Remote-Control',
          // uncomment the following line to show the URL of the remote control on the mirror
            position: 'bottom_right',
          // you can hide this module afterwards from the remote control itself
          config: {
              customCommand: {},  // Optional, See "Using Custom Commands" below
              customMenu: "custom_menu.json", // Optional, See "Custom Menu Items" below
              showModuleApiMenu: true, // Optional, Enable the Module Controls menu
              apiKey: "",         // Optional, See API/README.md for details
          }
      },
      
      
      		{
      			module: "compliments",
      			position: "lower_third"
      		},
      		
      		
      
      {
      			  module: "MMM-DarkSkyForecast",
      
      posted in Troubleshooting
      M
      motdog
    • RE: Changed a few compliments, hosed it up - not fixed, still hosed

      Thanks everyone. Got it fixed

      posted in Troubleshooting
      M
      motdog
    • 1
    • 2
    • 8
    • 9
    • 10
    • 11
    • 12
    • 10 / 12