Not sure if this is the problem but the position for module WorldTides should be top_right and not top-right
That btw is my fault, a stupid typo in the readme :(
Not sure if this is the problem but the position for module WorldTides should be top_right and not top-right
That btw is my fault, a stupid typo in the readme :(
Absolutely. I signed up for a developer account but did not find the time on the weekend to go for it. The API indeed looks neat.
Just post your config.js file content and let others see what might be missing.
Please tab indent your file content before posting or use proper markup so the code is readable
A raspberry 2 or 3 (1 and zero work in servermode only) with a proper power source and a SD/micro SD card and a monitor is the minimum hardware.
You need to provide internet, either by wired connection (onboard) or wireless (pi 3 has onboard wlan, all others need a wlan dongle). In addition mouse and keyboard are of value.
If you want extra features you need a PIR sensor or a webcam or an usb microphone or a temperature/humidity sensor, …
@DazDavid
great, glad to help!
A quick search for “local ics” would return this: https://forum.magicmirror.builders/topic/467/calendar-ics-file-from-local-path/6 :)
@Blamer
That’s interesting. This guy ( http://blog.tobias-weis.de/smarter-smartmirror/ ) uses the myspiegel.de mirror and is more than happy with it.
@gismo2006
192.168.x.x is a private Class C network
10.0.0.x is a private class A network
As you see on the screenshot cpramhofer is able to connect to the management website in a browser, so the IP address should not be the problem.
If you want to create a SmartPhone app, then go for it. Even if you are the only one using it you gain experience by writing.
There already is a RemoteControl module ( https://forum.magicmirror.builders/topic/735/mmm-remote-control ) which is accessible by any browser. As such the remote control is platform independant.
Looks interesting. Isn’t the reflection disturbing when really working with it as an external display with colors and lots of information?
Take a look at this thread: https://forum.magicmirror.builders/topic/548/building-mirror-without-programing
It is for Microsoft Windows but I bet you can adapt the instructions to make it work on your Mac. There is a node.js installation package for Mac available, the download link is in the instructions.
Maybe you can use the scheduler module, add your map module two times with different locations and schedule for workdays and weekend
This was supposed to be a reply to https://forum.magicmirror.builders/topic/768/front-door-mirror, for some reason “pi” created a new thread instead. :)
@killerwaffles
You are welcome.
You could as well remove all lines of code you just commented out with //
You need to remove or comment the whole block of the module. In your case I marked all lines with //
Otherwise parsing of the config file will fail because of missing brackets or commas
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
port: 8080,
language: 'en',
timeFormat: 24,
units: 'metric',
modules: [
{
module: 'alert',
},
{
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
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
appid: 'YOUR_OPENWEATHER_API_KEY'
}
},
{
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;}
@KirAsh4
I guess no one can really imagine your loss. I hope you can rely on your family and your friends to deal with this tragedy. Take care, man!
interesting. Thanks for showing the difference between 12% and 20% so clearly.
Is the 12% better readable if you use the shutter to darken the room?
I’d like to jump in as well.
How do you decide if a node_helper is required or if the module itself is sufficient? Is there any benefit or downside if you choose one way or the other?