@justjim1220
did you try to start the “Server only” mode an open a browser on Ubuntu with IP of your MM?
To start Server only do node serveronly in your MagicMirror directory.
Maybe this helps to find the problem.
AxLED
@justjim1220
did you try to start the “Server only” mode an open a browser on Ubuntu with IP of your MM?
To start Server only do node serveronly in your MagicMirror directory.
Maybe this helps to find the problem.
AxLED
It depends on the language flag of your MM config.js, try this and restart MM:
language: "nl",
AxLED
@johnnewhouse
In my MM your posted calendar config is working.
AxLED
@AgP42
You are right, i told you the wrong line, i corrected my thread above.
I am glad it is working on your MM as needed.
AxLED
@AgP42
Hi,
thanks for your request, i checked my code and can give you a solution for the brightness issue.
I found out, that it seems to be a problem with MMM-Remote-Control, node_helper.js
But there is a workaround:
Replace line 618
res.send({"status": "success"});
through
if (res) { res.send({"status": "success"}); }
Thanks to glitch452 who found the error, details see:
https://github.com/Jopyth/MMM-Remote-Control/issues/76
Sample code for config.js, Module MMM-Navigate:
{notification: "REMOTE_ACTION", payload: {action: "BRIGHTNESS", value: "200"}},
AxLED
@Nico-Biester
There are some mistakes in your module config:
“ instead of " (are you using mac to edit config.js?)mon:to Mo:, as the module is looking for the array name of mon:This code shoud work:
{
module: "MMM-WeeklySchedule",
position: "top_center",
header: "Stundenplan",
config: {
schedule: {
timeslots: [ "8:00", "8:30", "10:00", "11:40", "11:50" ,"13:00", "14:00", "14:45", "16:00"],
lessons: {
mon: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
tue: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
wed: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
thu: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
fri: [ "GA", "LZ - ", "Pause (30)", "1 FS", "2 FS", "Pause (60)", "LB", "3 FS", "Feierabend"],
},
updateInterval: 1 * 60 * 60 * 1000, // every hour
showNextDayAfter: "22:00"
},
},
},
AxLED
@Nico-Biester
Can you mark this Thread as solved?
AxLed
@SoleLo
try to remove the quotes around the values true and false inside your Module MMM-MyWeather config.
For example:
coloricon: true,
instead of
coloricon: "true",
AxLED
@Nico-Biester
Hi Nico,
try this:
{
module: "weatherforecast",
position: "top_right",
header: "Weather Forecast",
config: {
location: "Bonn,Germany",
locationID: "2946447", //ID from http://www.openweathermap.org/help/city_list.txt
appid: "YOUR_OPENWEATHER_API_KEY"
}
},
AxLED
@justjim1220
The modules you can use are:
MMM-Remote-Control (to show/hide modules)
MMM-ModuleSchedulert (to define when you would like to do this
But there are some more modules in the MM Cosmos.
AxLED
Hi to all,
i checked the default calendar module and found an approach:
If i manipulate following code:
calendar.js, Line 338:
var today = moment().startOf("day");’ to var today = moment().subtract(60,'d').startOf("day");
and
calendarfetcher.js, Line 74:
var today = moment().startOf("day").toDate(); to var today = moment().subtract(60,'d').startOf("day").toDate();
the calendar module of my MM will show calendar entries starting Date of two month ago (today-60 days).
Now i have to add following functions:
Sources: https://momentjs.com/docs/#/manipulating/add/
Greets
AxLED
Hi to all MM-Builders,
as i want to use my MM as replacement for a analog family cardboard calendar i have following question/request.
Is there calendar module, where i can “scroll” throuh the dates?
As i have a rotary encoder connected to my pi 3 - sending of notifications is no problem.
Something like “+7” or “-7” (days).
I checked the default calendar module and guess i have to add “notification received”, but i dont understand, how the module reads an .ics file.
Is it possible to set a start date, from which the calender entries should be shown?
So i could manipulate the startdate by notifications from my rotary module (MMM-Navigate).
Maybe someone has a tip where i can start.
Thanks in advance.
AxLED
Hi to all,
today i tried MagicMirror-FootballLeagues (which is a modified fork of MMM-SoccerLiveScore) with League ID 467 an the following config:
{
module: 'MagicMirror-FootballLeagues',
position: 'top_left',
header: 'Live-Scores',
config: {
leagues: [467],
showNames: true,
displayTime: 60 * 1000,
showTables: true,
showLogos: true,
apiKey: 'secret',
showUnavailable: true
}
Works perfect. In my opinion the fastes way to get Fifa World Cup on MM.
AxLED
You are welcome, i had some visual basic skills in the past an trained myself javascript skills the last weeks, for modifying and writing own modules.
I am sure in a few weeks, you are helping other MM Users to do some customizing on their mirrors.
AxLED
I think your fork is only working for league 4000 (Worldcup/WM 2018), as the other leagues have still use the old links. I didnt have the time to do a fork for all leagues.
I guess you have to some if then else statements, if league 4000 ist used.
AxLED
Hi,
what are the logs showing? (npm start dev [on Raspberry]) or (F12 [on broser like Firefox]).
AxLED
@blup said in MMM-ModuleScheduler (how to use MMM-RemoteControl to HIDE/SHOW modules)?:
{notification: ‘REMOTE_ACTION’, schedule: ‘0 6 * * MON-FRI’, payload: {action: “SHOW&module=module_15_MMM-Traffic”}},
Hi Peter,
1st Tip:
I think your syntax in config.js is wrong.
You use:
{notification: 'REMOTE_ACTION', schedule: '0 6 * * MON-FRI', payload: {action: "SHOW&module=module_15_MMM-Traffic"}},
and i think (didnt test it) it should be
{notification: 'REMOTE_ACTION', schedule: '0 6 * * MON-FRI', payload: {action: "SHOW", module: "module_15_MMM-Traffic"}},
2nd Tip:
Have you checked the config options of MMM-Traffic, see this entries:
showWeekend, startHr, endHr, hideOffHours
AxLED
Hi,
what are the logs showing? (npm start dev [on Raspberry]) or (F12 [on broser like Firefox]).
AxLED
@paulb said in Fifa World Cup overview:
“sudo nano /home/pi/MagicMirror/MMM-SoccerLiveScore/node_helper.js”
Hi Paul,
there is a folder missing in your command, there must be a /modules/ between MagicMirror and MMM-Soccer…
“sudo nano /home/pi/MagicMirror/modules/MMM-SoccerLiveScore/node_helper.js”
AxLED