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

    gable74

    @gable74

    0
    Reputation
    365
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    gable74 Unfollow Follow

    Latest posts made by gable74

    • RE: MMM-AlarmClock

      Thank you. Sorry for the noob errors, I am trying…lol. To sound even more stupid, I also figured out you need to remove the “-Master” from the folder name as well. At least I figured that out on my own…LOL.

      “MMM-AlarmClock”…not “MMM-AlarmClock-Master” :)

      posted in Utilities
      G
      gable74
    • RE: MMM-AlarmClock

      Hello and thank you for the Module. I am trying to learn to add modules to my MM and could use some help please. I have cloned the folders in to my /modules/default directory as well as modified my config.js file but the alarm object is still not showing on the mirror. Here is my config.js file if someone could see if I have done something wrong. Thanks.

      modules: [
      	{
      		module: "alert",
      	},
      	{
      		module: "updatenotification",
      		position: "top_bar"
      	},
      	{
      		module: "clock",
      		position: "top_left"
      	},
      	{
      		module: "calendar",
      		header: "US Holidays",
      		position: "top_left",
      		config: {
      			calendars: [
      				{
      					symbol: "calendar-check-o ",
      					url: "webcal://www.calendarlabs.com/templates/ical/US-Holidays.ics"
      				}
      			]
      		}
      	},
      	{
      		module: "compliments",
      		position: "lower_third"
      	},
      	{
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "New York",
      			locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
      	{
      		module: "weatherforecast",
      		position: "top_right",
      		header: "Weather Forecast",
      		config: {
      			location: "New York",
      			locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      			appid: "YOUR_OPENWEATHER_API_KEY"
      		}
      	},
                  {
          		module: 'MMM-AlarmClock',
          		position: 'top_right',
          		config: {
              			alarms: [
                  		{time: "18:30", days: [2,4], title: "Soccer", message: "Get ready for soccer training!"},
              		],
                          }
          	},	
      	{
      		module: "newsfeed",
      		position: "bottom_bar",
      		config: {
      			feeds: [
      				{
      					title: "New York Times",
      					url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
      				}
      			],
      			showSourceTitle: true,
      			showPublishDate: true
      		}
      	},
      ]
      

      };

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

      posted in Utilities
      G
      gable74
    • RE: Q: How to make the Magic Mirror clickable

      I have implemented the news feed touch module but I am having some issues. I guess my main issue is I can not even see a mouse pointer to try the clickable object. How would I go about first just making the pointer visible so I can begin actually testing the touch objects? I want to get the interface working correctly before I go on to the next step of building the housing and ordering the touch frame.

      Thanks!

      posted in Troubleshooting
      G
      gable74
    • RE: Q: How to make the Magic Mirror clickable

      Thank you very much!

      posted in Troubleshooting
      G
      gable74
    • Q: How to make the Magic Mirror clickable

      I am in the early stages of creating my mirror.

      I have setup my pi
      installed MM
      Edited my modules for my region
      etc.

      I already know I want to make my MM interactive so you can click on objects to open web pages or other modules. Can someone point me in the direction on how to start this process?

      Is there a “how-to” for this?
      Is there an already developed add-on to make this happen?

      Any help would be much appreciated!

      Jimmie

      posted in Troubleshooting
      G
      gable74