Which radiostation is ssms ? Might it be possible that radio.de does not cover this radio station ? Normally I can start directly in the webbrowser my desired radio station by .radio.de , e.g. http://antenneduesseldorf.radio.de/. If I however try to start http://ssms.radio.de/ I am redirected to the home page of radio.de. So my interpretation is that the station name might be differently for radio.de. In order to help you it would be helpful to get full station name. If it is the super saturday morning show, it looks like radio.de does not reference it. This would mean that my plugin will not work you.
Read the statement by Michael Teeuw here.
Posts made by Steff
-
RE: [MMM-RadioDe] - Simple Web Radio.de player
-
[MMM-RadioDe] - Simple Web Radio.de player
Description:
This is an extension for the MagicMirror. It can show/hide a webradio stream provided by Radio.de You can start and stop this web radio stream by hiding the module. It uses the suspend/ resume method of MagicMirror for this. Currently the setup is rather simple. Potential extensions for the future might be selection of the radio station via remote control plugin, tuning of volume. Currently I do use the module to start in the evening the favorite radio channel of my children and to stop it again once they do sleep.
Screenshots:
Download:
[card:SteffMUC/MMM-RadioDe]
Version 0.1.0
- First initial commit
- Feedback highly welcome!
-
RE: Suddenly ipWhitelist no longer working...
Digging one step further:
My magicmirror has the ip address 192.168.178.164.
I am using a cable fritz box, i configured it that this ip address has the hostname “magicmirror”.
I remember that I had to a reboot of the fritzbox 2 days ago, will investigate whether I potentially lost some settings in the fritzbox.
Funny thing:
If I try to access directlyhttp://192.168.178.64:8080/remote.html
, I do not get any problem, only if I try to access it withhttp://magicmirror:8080/remote.html#power-menu
I do not -yet- understand why…
BTW: if i ping the magicmirror from the same pc, the address resolving is working:PING magicmirror.fritz.box (192.168.178.64): 56 data bytes 64 bytes from 192.168.178.64: icmp_seq=0 ttl=64 time=7.766 ms 64 bytes from 192.168.178.64: icmp_seq=1 ttl=64 time=9.753 ms 64 bytes from 192.168.178.64: icmp_seq=2 ttl=64 time=12.715 ms 64 bytes from 192.168.178.64: icmp_seq=3 ttl=64 time=10.908 ms 64 bytes from 192.168.178.64: icmp_seq=4 ttl=64 time=20.834 ms
Using the full pseudo domain name `http://magicmirror.fritz.box:8080/remote.html#power-menu’ does not help…
-
RE: Suddenly ipWhitelist no longer working...
Just reverted to a very basic config.js file, which was working definitely beforehand and still get the same error code. Funny thing for me: Regardless from which device I am trying to access the magicmirror, I do get the same error address, so somehow the raspi is not able to resolve to the real ip address, at least this is my impression.
netstat -lnpt
delivers:Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp6 0 0 :::8080 :::* LISTEN 2566/electron.js
tcp6 0 0 :::22 :::* LISTEN - `I saw that initially I did not extend correctly my address range, so changed this to:
ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::ffff:192.168.1.1/112", "::1"],
I am still lost and I love the remotecontrol module …
-
Suddenly ipWhitelist no longer working...
Suddenly it is no longer working…
With the availability of V2.1.0 I did extend my config.js file. After that everything was working until today :( .
I played a little bit around with further extending the ip range in the config file, but I tend to get permanently following error code:Access denied to IP address: 2a02
From my perspective I did not change anything, however I am slightly surprised that I cannot read a direct ip address like 192.168.178.xx for access denied.
My ipWhitelist in config.js:"ipWhitelist": [ "127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.178.1/112" ],
The ip address from which I try to access the remote config tool is 192.168.178.25, I am little bit lost, what might the real root cause, so any hint would be highly appreciated…
-
RE: MMM-Soccer - Standings, Schedules and Top Scorers
@strawberry-3-141 Now I do have the similar problem for 1. FSV Mainz 05.
Adding this line in the .js file solved it:
“1. FSV Mainz 05”: “https://upload.wikimedia.org/wikipedia/commons/thumb/d/d6/FSV_Mainz_05_Logo.png/100px-FSV_Mainz_05_Logo.png”
Do you think it might make sense to include it as well on github ? Thanks -
RE: MagicMirror v2.1.0 Update error
I did try to configure an external
compliments.json
file, however it seems that it is not interpreted, since I do get again the default compliments.
The file is located within the config directory.
My configuration:{ module: 'compliments', position: 'lower_third', config: { remoteFile: 'compliments.json' } },
Do you have a hint what might be wrong ?
-
RE: MagicMirror v2.1.0 Update error
@bhepler
Thanks for your hint.
I know the doc does not show them. However I understood the documentation that I will need them for an external file. So I wanted to be prepared for the move to an external file. I tested it with them inside the config.js file and it worked. Do you see any specific reason to remove them ? -
RE: MagicMirror v2.1.0 Update error
@schlachtkreuzer6
After your question I understood what I personally had done wrong, so I lost my German compliments, still have to confess this to my 8 year old boy who wrote them. Please find here an example with German text how you could modify your local config.js to show German comments:{ module: 'compliments', position: 'lower_third', config: { compliments: { "morning" : [ "Du siehst aber gut aus heute !", "Gut geschlafen ?", "Moin, Moin...." ], "afternoon" : [ "Ab Fussball spielen !", "Lass uns auf den Abend vorbereiten....", "Musik hören ?" ], "evening" : [ "Einen Cocktail ?", "Wow, Du bist aber heiss heute...", "Wollen wir heute abend weggehen ?" ] } } },