@mykle1 there is no sound ringing or similar. I think the alert module is enabled by default or is that wrong? As stated by strawberry in #2 it should be working the way it is now.
@strawberry-3.141 I run the module with the mirror started as npm start dev
but don’t see any. Here is my log:
pi@Spieglein:~/MagicMirror $ npm start dev
> magicmirror@2.1.3 start /home/pi/MagicMirror
> sh run-start.sh "dev"
Starting MagicMirror: v2.1.3
Loading config ...
Loading module helpers ...
No helper found for module: alert.
Initializing new module helper ...
Module helper loaded: updatenotification
No helper found for module: MMM-AlarmClock.
No helper found for module: clock.
Initializing new module helper ...
Module helper loaded: calendar
No helper found for module: compliments.
No helper found for module: currentweather.
No helper found for module: weatherforecast.
Initializing new module helper ...
Module helper loaded: newsfeed
All module helpers loaded.
Starting server on port 8080 ...
You're using a full whitelist configuration to allow for all IPs
Server started ...
Connecting socket for: updatenotification
Connecting socket for: calendar
Starting node helper for: calendar
Connecting socket for: newsfeed
Starting module: newsfeed
Sockets connected & modules started ...
Launching application.
Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/[XXX]/basic.ics - Interval: 300000
Create new calendar fetcher for url: https://calendar.google.com/calendar/ical/[XXX]/basic.ics - Interval: 300000
Create new news fetcher for url: http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml - Interval: 300000
Use existing news fetcher for url: http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml
{here it went black, but no notification}
@all sorry for taking the wrong config options for the module, didn’t read them carefully. Again here my config, just in case there is something wrong with other modules influencing this:
modules: [
{
module: "alert",
},
{
module: "updatenotification",
position: "top_bar"
},
{
module: "MMM-AlarmClock",
position: "top_right",
config: {
alarms: [
{time: "21:14", days: [0,1,2,3,4,5,6], title: "Test", message: "Es geht!!!"},
],
}
},
{
module: "clock",
position: "top_left"
},
{
module: "calendar",
header: "Termine",
position: "top_left",
config: {
calendars: [
{
symbol: "calendar-check-o ",
url: "https://calendar.google.com/calendar/ical/[XXX]$
},
{
symbol: "calendar-check-o ",
url: "https://calendar.google.com/calendar/ical/[XXX]$
}
]
}
},
some more modules, but all standard without any changes