<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM_radioDe]]></title><description><![CDATA[<p dir="auto">Hi<br />
I installed the MMM_RadioDe module …<br />
Everything works but the only problem is that the radio does not start automatically.<br />
Here is my code in the config file:<br />
{<br />
module: ‘MMM-RadioDe’,<br />
position: “center”,</p>
<p dir="auto">config: {<br />
station: “rtu”,<br />
api_key: ‘df04ff67dd3339a6fc19c9b8be164d5b5245ae93’,</p>
<p dir="auto">}<br />
},<br />
How can I activate the automatic launch?</p>
]]></description><link>https://forum.magicmirror.builders/topic/15149/mmm_radiode</link><generator>RSS for Node</generator><lastBuildDate>Thu, 18 Jun 2026 14:46:50 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/15149.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 18 Jun 2021 13:04:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM_radioDe on Fri, 18 Jun 2021 14:30:36 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/arckoos" aria-label="Profile: arckoos">@<bdi>arckoos</bdi></a> you are not supposed to edit the module.js file</p>
<p dir="auto">only parms in config.js</p>
]]></description><link>https://forum.magicmirror.builders/post/92219</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/92219</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 18 Jun 2021 14:30:36 GMT</pubDate></item><item><title><![CDATA[Reply to MMM_radioDe on Fri, 18 Jun 2021 13:27:59 GMT]]></title><description><![CDATA[<p dir="auto">here ma code in MMM_RadioDe.js</p>
<p dir="auto">Module.register(“MMM-RadioDe”,{<br />
// Default module config.<br />
defaults: {<br />
api_key: false,<br />
station: ‘rtu’,<br />
autoplay: “true”,<br />
player_color: “61ce42”, //does not have any influence<br />
height:“92”, // in pixel<br />
width:“360”, // in pixel<br />
// volume:“70%” not yet implemented<br />
},<br />
display: true,</p>
<pre><code>// Subclass start method.
start: function() {
    Log.info("Starting module: " + this.name);
    //Log.info("Setting System Volume to " + this.config.volume);
    //exec("amixer -q sset Master " + this.config.volume, null);
},


getDom: function() {
  var wrapper = document.createElement("div");
  if (this.display) {

    var script = document.createElement("div");
    script.innerHTML = "&lt;div class=\"ng-app-embedded\"&gt;&lt;div style=\"display:none;\" class=\"\" data-playertype=\"web_embedded\" data-playstation=\"rtu\" data-autoplay=\"true\" data-playercolor=\"" + this.config.player_color + "\" data-apikey=\"df04ff67dd3339a6fc19c9b8be164d5b5245ae93" + this.config.api_key + "\" data-iframe=\"true\"&gt;&lt;/div&gt;&lt;iframe src=\"http://radio.de/inc/microsite/index.html?playerWidth="+ this.config.width +"px&amp;amp;playerHeight="+ this.config.height + "px&amp;amp;playerType=web_embedded&amp;amp;partnerLogo=null&amp;amp;partnerUrl=null&amp;amp;partnerBacklink=null&amp;amp;partnerName=null&amp;amp;popoutTitle=null&amp;amp;stations=null&amp;amp;listText=null&amp;amp;listSubtext=null&amp;amp;playerColor=" + this.config.player_color + "&amp;amp;showFooter=null&amp;amp;token=null&amp;amp;playStation=" + this.config.station + "&amp;amp;apikey=" + this.config.api_key + "&amp;amp;popupWidth=null&amp;amp;popupHeight=null&amp;amp;autoplay=" + this.config.autoplay + "&amp;amp;iframe=true\" id=\"radioDeIframe0\" name=\"radioDeIframe0\" frameborder=\"0\" style=\"width: "+ this.config.width +"px; height: "+ this.config.height + "px;\" height=\""+this.config.height+"\" width=\""+this.config.height+"\"&gt;&lt;/iframe&gt;&lt;/div&gt;";

    wrapper.appendChild(script);
    }

  return wrapper;
  },

  suspend: function(){
    this.display = false;
    this.updateDom(300);
  },

  resume: function(){
    this.display = true;
    this.updateDom(300);
  },
</code></pre>
<p dir="auto">});</p>
]]></description><link>https://forum.magicmirror.builders/post/92218</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/92218</guid><dc:creator><![CDATA[Arckoos]]></dc:creator><pubDate>Fri, 18 Jun 2021 13:27:59 GMT</pubDate></item></channel></rss>