-
Notifications
You must be signed in to change notification settings - Fork 3
No repositotry field and im unable to learn config file after i added this module #4
Copy link
Copy link
Open
Description
/* Magic Mirror Config Sample
*
- By Michael Teeuw http://michaelteeuw.nl
- MIT Licensed.
- For more information how you can configurate this file
- See https://github.com/MichMich/MagicMirror#configuration
*/
var config = {
address: "0.0.0.0",
port: 8080,
ipWhitelist: [],
// Set [] to allow all IP addresses
// or add a specific IPv4 of 192.168.1.5 :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
// or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format :
// ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.0.0/120"],
language: "en",
timeFormat: 24,
units: "metric",
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: 'MMM-Remote-Control',
position: "bottom_left"
// you can hide this module afterwards from the remote control itself
},
{
module: "currentweather",
position: "top_right",
config: {
location: "Singapore",
locationID: "1880251", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "22c02d458b496016a2fea8fbfb0ee9f5"
}
},
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "Singapore",
locationID: "1880251", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "22c02d458b496016a2fea8fbfb0ee9f5"
}
},
{
module: 'MMM-connection-status',
header: "Internet Connection",
position: 'top_left', // Or any valid MagicMirror position.
config: {
// See 'Configuration options' for more information.
}
},
{
module: "MMM-Globe",
position: "bottom_right",
config: {
style: 'geoColor',
imageSize: 250,
ownImagePath:'',
updateInterval: 10*60*1000
}
},
{
module: "MMM-awesome-alexa",
position: "bottom_bar",
config: {
"wakeWord": "Alexa",
"clientId": "amzn1.application-oa2-client.7240bc50da9542368afebbf1e16f3231",
"clientSecret": "0ac8e8cc512f39ec8fb6b8525b08d8187ecf6a4f243002143e6b256ff71f57d7",
"deviceId": "EchoDot",
"refreshToken": "Atzr|IwEBIN9R3HtLrDMFF9f921x-nyj_3u-QHPEFJ5Cmnz5s4O4IMpUNe13gY3VOUFvimpvyCcve3UZRwwjUNYPv9DM-_oy9EGKBUFs19oLPJNvmig9roig3x6aIZFVxBfc4TLMoh7Z6Hmas_-8qNMPvn4DZKoW2oyeJ4_FhCCed3FabjMrMzLEmgNqoCKuAppsK0WwXVRgSI8Y59pKs3n7wa2Y28qSgyjTyQI8OSkfu0Ie86YKaWWCpB6fNXPsQWrLkLPSO3-DrTIfyfFbqwo4ZJe2477ffiRajvPl9oJVJz7cGAUxdXHKSdtSdXKhpv5HRPNFcxrhq9TEWwlyPju2-shqSsxrjoqoeziIvLMjnR2UUAwSYdFaAbR5p4bDV7eg6DHAguSwuEkUgtBDGtqEUxSopnCzKYFfa3PJi0_NmSyoj2LIKzFTqkNcjw6HI8nMoPDHuJMP-4jnH6zd6ZbxpzHBUNwqZCkNE2Wj_SmiSEMHpxuC_InPqyipTUbMLkNne9QW_o4mYrwsSY4RPqn8Cfrk_MXz8Zewr_h2ypHA4hGrGUHEfng",
"visualisation": true
}
},
{
module: "MMM-MP3Player",
position: "bottom_bar",
},
{
module: "MMM-VideoPlayer",
position "bottom_bar",
config: {
playerWidth: "500",
playerHeight: "370"
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels