<?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[💬 OpenHAB]]></title><description><![CDATA[<p dir="auto">This thread contains comments for the article "<a href="https://www.mysensors.org/controller/openhab" rel="nofollow ugc">OpenHAB</a>" posted on <a href="https://www.mysensors.org/controller/openhab" rel="nofollow ugc">MySensors.org</a>.</p>
]]></description><link>https://forum.mysensors.org/topic/4786/openhab</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Jul 2026 00:52:56 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/4786.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 11 Sep 2016 21:09:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 💬 OpenHAB on Sat, 30 Mar 2019 23:35:07 GMT]]></title><description><![CDATA[<p dir="auto">Some time passed by but I just wanted to thank you <a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: guillermo-schimmel">@<bdi>guillermo-schimmel</bdi></a> , I've finally managed to connect sensors properly (at least one of them).</p>
<p dir="auto">I had to do some changes based on official documentation, so what I did is I just installed mqtt binding from paperUI, and then added one mysensors.things file with fallowing</p>
<pre><code>

Bridge mqtt:broker:mosqbroker "Work Broker" [ host="192.168.1.ip", port="1883", secure=false, username="myuser", password="mypassword", clientID="OPENHAB", startupCheckEnabled=false  ]

Thing mqtt:topic:mosqbroker:ChargingStation_Switch4h_raw_thing "Charging station button" (mqtt:broker:mosqbroker) @ "Home" {
    Channels:
        Type string : ChargingStation_Switch4h_raw_button "Charging station 4h button" [ stateTopic="mygateway1-out/31/4/1/0/16"]
}

</code></pre>
<p dir="auto">and then in my items file I had this</p>
<pre><code>
String ChargingStation_Switch4h_raw_converted       "ChargingStation Switch4h"           { channel="mqtt:topic:mosqbroker:ChargingStation_Switch4h_raw_thing:ChargingStation_Switch4h_raw_button"}

</code></pre>
<p dir="auto">and I get the value of the item properly (note I have string for testing, number might be more appropriate here, but that will be fixed another day)</p>
]]></description><link>https://forum.mysensors.org/post/98259</link><guid isPermaLink="true">https://forum.mysensors.org/post/98259</guid><dc:creator><![CDATA[dakipro]]></dc:creator><pubDate>Sat, 30 Mar 2019 23:35:07 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Fri, 22 Mar 2019 03:45:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: guillermo-schimmel">@<bdi>guillermo-schimmel</bdi></a> Hi! Thanks a lot for your examples!</p>
<p dir="auto">I currently trying to upgrade my system from method 1a (old mqtt binding, lots of items with cryptic topic definitions) to a brand new installation using method 2 (in theory, organized things/channels, autodiscovery, smartsleep support). I managed to get something kind of working but I'm not sure if I'm doing  int the <em>right</em> way.</p>
<ul>
<li>
<p dir="auto">In a situation that I have one arduino, with a dht sensor (providing temperature + humidity) will I have to create separates things to get both values? ( autodiscovery did like that). Or will it be possible to have a thing representing the physical node (with nodeid), with multiple channels for each of its sensors (childs ids) ?</p>
</li>
<li>
<p dir="auto">Also, do you have a working example of a MySensor thing file? looks like your examples cover mqtt2 things + items + sitemap  and MySensor items (taking channel from PaperUI things <em>page</em>, I suppose)</p>
</li>
</ul>
<p dir="auto">Thanks again !</p>
]]></description><link>https://forum.mysensors.org/post/98143</link><guid isPermaLink="true">https://forum.mysensors.org/post/98143</guid><dc:creator><![CDATA[rgriffogoes]]></dc:creator><pubDate>Fri, 22 Mar 2019 03:45:55 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Tue, 08 Jan 2019 18:48:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dakipro" aria-label="Profile: dakipro">@<bdi>dakipro</bdi></a></p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dakipro" aria-label="Profile: dakipro">@<bdi>dakipro</bdi></a> said in <a href="/post/96400">💬 OpenHAB</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: guillermo-schimmel">@<bdi>guillermo-schimmel</bdi></a> said in <a href="/post/96387">💬 OpenHAB</a>:</p>
<p dir="auto">It looks that I was using 1.a, as this is how I already have items defined from before, f.eks.<br />
Number  Temp_03  	"Temperatura [%.1f °C]"  {mqtt="&lt;[mosquito:mygateway1-out/3/1/1/0/0:state:default]"}</p>
<p dir="auto">but I do agree, this is a bit... time consuming to figure out which value should be sent when.</p>
<p dir="auto">To migrate from this to 1.b, I would have to define every channel in the things file?</p>
</blockquote>
<p dir="auto">Yes, like this:</p>
<pre><code>Thing mqtt:topic:miscosas {
        Channels:
            Type number : ecovacs_1_battery_level "Ecovacs 01 Battery Level"  [ stateTopic="ecovacs/E0000693817701104736/battery_level" ]
            Type string : ecovacs_1_charge_status "Ecovacs 01 Charge Status"  [ stateTopic="ecovacs/E0000693817701104736/charge_status" ]
</code></pre>
<p dir="auto">Or via Paper UI, which is slower and painful.</p>
<blockquote>
<p dir="auto">I am not a fan of PaperUi , and would like to have a official bindings when possible. It is always annoying to update openhab, and I would like to keep it as less complicated as possible.</p>
<p dir="auto">Do you have an example (or give some tips) on how to go with 1.b route, either via PaperUi, or things file? What do I write there for one, f.eks. temperature-humidity sensor?</p>
</blockquote>
<p dir="auto">The "1.b" is just like I said. Define your .things and then is identical to the 2. From things you go to items and then sitemap.</p>
<blockquote>
<p dir="auto">I like having good control over each node, so defining each channel should be fine for me, I am just struggling to get started, then I can copy-paste from there :)</p>
</blockquote>
<p dir="auto">There you have an example, which I actually use with and old mysensor node which I modifyed (bad)</p>
<p dir="auto">a. Things:</p>
<pre><code>Thing mqtt:topic:miscosas {
        Channels:
            Type string : porton_a_mano           "Garage Porton a Mano"      [ stateTopic="mygateway1-out/11/3/1/0/16" ]
       }
</code></pre>
<p dir="auto">b. Items</p>
<pre><code>String item_porton_a_mano       "porton a mano"           { channel="mqtt:topic:miscosas:porton_a_mano"}
</code></pre>
<p dir="auto">c. Sitemap</p>
<pre><code>Frame label="Garage" {
    Default item=item_porton_a_mano icon="garagedoor" valuecolor=[CLOSED="green",OPEN="red" ]    
}
</code></pre>
<blockquote>
<p dir="auto">Thanks!</p>
</blockquote>
]]></description><link>https://forum.mysensors.org/post/96401</link><guid isPermaLink="true">https://forum.mysensors.org/post/96401</guid><dc:creator><![CDATA[Guillermo Schimmel]]></dc:creator><pubDate>Tue, 08 Jan 2019 18:48:24 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Tue, 08 Jan 2019 18:42:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: guillermo-schimmel">@<bdi>guillermo-schimmel</bdi></a> said in <a href="/post/96387">💬 OpenHAB</a>:</p>
<blockquote>
<p dir="auto">The 1.b. route: MQTT using new MQTT 2.x binding<br />
The 1.b route. It also works fine, you define the broker via Paper UI and/or files, and you then define every channel by hand, the easier way is via PaperUI.<br />
This is awful.</p>
</blockquote>
<p dir="auto">It looks that I was using 1.a, as this is how I already have items defined from before, f.eks.<br />
Number  Temp_03  	"Temperatura [%.1f °C]"  {mqtt="&lt;[mosquito:mygateway1-out/3/1/1/0/0:state:default]"}</p>
<p dir="auto">but I do agree, this is a bit... time consuming to figure out which value should be sent when.</p>
<p dir="auto">To migrate from this to 1.b, I would have to define every channel in the things file?<br />
I am not a fan of PaperUi , and would like to have a official bindings when possible. It is always annoying to update openhab, and I would like to keep it as less complicated as possible.</p>
<p dir="auto">Do you have an example (or give some tips) on how to go with 1.b route, either via PaperUi, or things file? What do I write there for one, f.eks. temperature-humidity sensor?</p>
<p dir="auto">I like having good control over each node, so defining each channel should be fine for me, I am just struggling to get started, then I can copy-paste from there :)</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://forum.mysensors.org/post/96400</link><guid isPermaLink="true">https://forum.mysensors.org/post/96400</guid><dc:creator><![CDATA[dakipro]]></dc:creator><pubDate>Tue, 08 Jan 2019 18:42:39 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Mon, 07 Jan 2019 22:01:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dakipro" aria-label="Profile: dakipro">@<bdi>dakipro</bdi></a> Well let me try to clarify that, because I have been there.</p>
<p dir="auto">Once you went the MQTT way (same as I did), you have two methods for connecting OpenHAB to the MySensors network.</p>
<ol>
<li>
<p dir="auto">MQTT Binding<br />
Here you have sadly two flavors<br />
1.a.) Old mqtt 1.0 binding<br />
1.b.) New mqtt 2.x binding</p>
</li>
<li>
<p dir="auto">MySensors Binding</p>
</li>
</ol>
<p dir="auto"><em><strong>The 1.a. route: MQTT using old MQTT 1.0 binding</strong></em></p>
<p dir="auto">If you go the 1.a route. You can manage without using Paper UI. I did that, and it worked pretty good. The downside? You don't have integration with Paper UI, and you have to discover every mqtt topic by hand. You end with things like *mysensors1-out/10/23/0/0/3/17</p>
<p dir="auto">You should try to avoid that route, but do know that it works.</p>
<p dir="auto"><em><strong>The 1.b. route: MQTT using new MQTT 2.x binding</strong></em></p>
<p dir="auto">The 1.b route. It also works fine, you define the broker via Paper UI and/or files, and you then define every channel by hand, the easier way is via PaperUI.</p>
<p dir="auto">This is awful.</p>
<p dir="auto"><em><strong>The 2.x route:</strong></em></p>
<p dir="auto">And finally in order to be on the bleeding edge, you can have the new mqtt 2.x binding for other stuff, but for MySensors please install the <em><strong>mysensors-binding</strong></em>. Unfortunately is not official but you can find it here in the forums.</p>
<p dir="auto">It works great. You define the broker via PaperUI or files, then you define the mqtt gateway thing and then <em>magic</em>, autodiscover of mysensors nodes and sensors.</p>
<p dir="auto">Once they are discovered you can browse them on the Paper UI and then use them either via Paper UI or files (take a look at my examples).</p>
<p dir="auto">This is the binding. It doesn't have much documentation but there is some, please look for it, I can't seem to find it now. You have to enter the openhab cli in order to activate it.</p>
<p dir="auto"><a href="http://www.oberfoell.com/openhab2/org.openhab.binding.mysensors-2.4.0-SNAPSHOT.jar" rel="nofollow ugc">http://www.oberfoell.com/openhab2/org.openhab.binding.mysensors-2.4.0-SNAPSHOT.jar</a></p>
<p dir="auto">Item files for each mode:</p>
<p dir="auto">1.a)</p>
<pre><code>Number tanque_distanciaalagua  "Distancia [%.0f cm]"     &lt;length&gt;      {mqtt="&lt;[mosquitto:mygateway1-out/10/1/1/0/13:state:default]",   expire="5m"}
</code></pre>
<p dir="auto">1.b)</p>
<pre><code>Number tanque_distanciaalagua  "Distancia [%.0f cm]"     &lt;length&gt;      { channel="mqtt:topic:efe295fe:tanque_distancia",   expire="5m"}
</code></pre>
<ol start="2">
<li></li>
</ol>
<pre><code>Number tanque_distanciaalagua  "Distancia [%.0f cm]"     &lt;length&gt;      { channel="mysensors:distance:gateway2:distance_10_1:distance",   expire="5m"}
</code></pre>
<p dir="auto">Hope this makes some sense. Do not hesitate in writing me.</p>
<p dir="auto">Regards and happy OpenHAB'in.</p>
<p dir="auto">Guille</p>
]]></description><link>https://forum.mysensors.org/post/96387</link><guid isPermaLink="true">https://forum.mysensors.org/post/96387</guid><dc:creator><![CDATA[Guillermo Schimmel]]></dc:creator><pubDate>Mon, 07 Jan 2019 22:01:00 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Mon, 07 Jan 2019 21:40:16 GMT]]></title><description><![CDATA[<p dir="auto">thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: Guillermo-Schimmel">@<bdi>Guillermo-Schimmel</bdi></a> , what I have so far is<br />
MQTT Binding from paperUi<br />
MQTT Broker - added from paperUI where I input my ip adress<br />
Then I should add channels from PaperUi as well?<br />
If I try that, only option I have is Publish Trigger. There should I put topic i guess?<br />
Or should I just add Things as you described and something new appears?</p>
<p dir="auto">I can wait for tutorial if that is easier for you, I have just a few non-vital devices in mysensors.<br />
Thanks again!</p>
]]></description><link>https://forum.mysensors.org/post/96386</link><guid isPermaLink="true">https://forum.mysensors.org/post/96386</guid><dc:creator><![CDATA[dakipro]]></dc:creator><pubDate>Mon, 07 Jan 2019 21:40:16 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Mon, 07 Jan 2019 21:25:25 GMT]]></title><description><![CDATA[<p dir="auto">Sure!</p>
<p dir="auto"><a href="mailto:henrik.ekblad@mysensors.org" rel="nofollow ugc">henrik.ekblad@mysensors.org</a></p>
<p dir="auto">.. and any updates you want to see in the text as well.</p>
]]></description><link>https://forum.mysensors.org/post/96384</link><guid isPermaLink="true">https://forum.mysensors.org/post/96384</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Mon, 07 Jan 2019 21:25:25 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Mon, 07 Jan 2019 21:23:48 GMT]]></title><description><![CDATA[<p dir="auto">Hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/hek" aria-label="Profile: hek">@<bdi>hek</bdi></a>, can I send you some images in order to update the very old that are showing here?</p>
]]></description><link>https://forum.mysensors.org/post/96383</link><guid isPermaLink="true">https://forum.mysensors.org/post/96383</guid><dc:creator><![CDATA[Guillermo Schimmel]]></dc:creator><pubDate>Mon, 07 Jan 2019 21:23:48 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Mon, 07 Jan 2019 21:22:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dakipro" aria-label="Profile: dakipro">@<bdi>dakipro</bdi></a> I have still to write a decent tutorial but if you follow the docs for mysensors binding is pretty straightforward.</p>
<p dir="auto">What I can do is show you some of my files:</p>
<ol>
<li>Things</li>
</ol>
<pre><code>Bridge mysensors:bridge-mqtt:gateway2 [ brokerName="mosquitto", topicPublish="mygateway1-in", topicSubscribe="mygateway1-out", startupCheckEnabled=false ] 
</code></pre>
<ol start="2">
<li>Items</li>
</ol>
<pre><code>Rollershutter Persiana24 "Persiana escritorio [%d %%]" (PERSIANAS) { channel="mysensors:cover:gateway2:cover_12_1:cover" }
</code></pre>
<p dir="auto"><em>cover_12_1</em> is the channel name, you have to look at that in the Paper UI.</p>
<ol start="3">
<li>Sitemap</li>
</ol>
<pre><code>Frame label=Persianas {

        Slider item=Persiana24 icon="rollershutter"
        Switch item=Persiana24
        Switch item=Persiana24 icon="rollershutter" mappings=[0="Abierta", 10="10%", 25="25%", 50="50%", 90="90%", 100="Cerrada"]
    }
</code></pre>
<p dir="auto">This is all working.</p>
]]></description><link>https://forum.mysensors.org/post/96382</link><guid isPermaLink="true">https://forum.mysensors.org/post/96382</guid><dc:creator><![CDATA[Guillermo Schimmel]]></dc:creator><pubDate>Mon, 07 Jan 2019 21:22:12 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Mon, 07 Jan 2019 21:16:20 GMT]]></title><description><![CDATA[<p dir="auto">hi <a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: Guillermo-Schimmel">@<bdi>Guillermo-Schimmel</bdi></a> thanks for the info, I searched for a while but didn't understod what to do with channels. Do you have an example or perhaps a list of the channels that should be added, and what the values are?<br />
Thanks!</p>
]]></description><link>https://forum.mysensors.org/post/96381</link><guid isPermaLink="true">https://forum.mysensors.org/post/96381</guid><dc:creator><![CDATA[dakipro]]></dc:creator><pubDate>Mon, 07 Jan 2019 21:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Wed, 19 Dec 2018 14:49:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/leitefrog" aria-label="Profile: leitefrog">@<bdi>leitefrog</bdi></a> Hi there. Hold on.</p>
<p dir="auto">I'm testing two variants:</p>
<ol>
<li>
<p dir="auto">openhab-mysensors binding. This is non-official but will try it today to see what happens. Looks promising.</p>
</li>
<li>
<p dir="auto">New mqtt binding. It's working already. You have to use the paper UI. First create the mqtt broker "thing" and then manually one channel for every mysensors variable. And then on the items definitions (files), the format changes:</p>
</li>
</ol>
<pre><code>//Number tanque_temperatura      "Temperatura [%.1f °C]"   &lt;temperature&gt; {mqtt="&lt;[mosquitto:mygateway1-out/10/2/1/0/0:state:default]",    expire="5m"}
Number tanque_temperatura      "Temperatura [%.1f °C]"   &lt;temperature&gt; { channel="mqtt:topic:efe295fe:tanque_temperatura",    expire="5m"}
</code></pre>
<p dir="auto">After my tests today with (1) I will try to write about my experiences.</p>
]]></description><link>https://forum.mysensors.org/post/95910</link><guid isPermaLink="true">https://forum.mysensors.org/post/95910</guid><dc:creator><![CDATA[Guillermo Schimmel]]></dc:creator><pubDate>Wed, 19 Dec 2018 14:49:50 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Wed, 19 Dec 2018 00:59:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/guillermo-schimmel" aria-label="Profile: guillermo-schimmel">@<bdi>guillermo-schimmel</bdi></a>  updating how to use the OpenHab 2.4 MQTT would be wonderful. Just updated OpenHab, and the new MQTT broke everything I had setup. I'm sure there is a step I missed, but the new bindings and embedded broker and MQTT Things has be wondering if there is an easier controller to use.</p>
]]></description><link>https://forum.mysensors.org/post/95893</link><guid isPermaLink="true">https://forum.mysensors.org/post/95893</guid><dc:creator><![CDATA[leitefrog]]></dc:creator><pubDate>Wed, 19 Dec 2018 00:59:50 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Tue, 18 Dec 2018 21:04:53 GMT]]></title><description><![CDATA[<p dir="auto">Hi guys, several updates on the OpenHAB front, being MQTT one of the biggest. Where can I update some of this outdated info?</p>
<p dir="auto">I highly recommend OpenHAB for mysensors, but for what you read here is not so tempting ;)</p>
<p dir="auto">regards</p>
]]></description><link>https://forum.mysensors.org/post/95886</link><guid isPermaLink="true">https://forum.mysensors.org/post/95886</guid><dc:creator><![CDATA[Guillermo Schimmel]]></dc:creator><pubDate>Tue, 18 Dec 2018 21:04:53 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Fri, 28 Sep 2018 09:39:31 GMT]]></title><description><![CDATA[<p dir="auto">This guide might be interesting to those who want to use MQTT:<br />
<a href="https://forum.mysensors.org/topic/9346/getting-mysensors-mqtt-gateway-working-on-openhab-2-2-stable">https://forum.mysensors.org/topic/9346/getting-mysensors-mqtt-gateway-working-on-openhab-2-2-stable</a></p>
]]></description><link>https://forum.mysensors.org/post/92670</link><guid isPermaLink="true">https://forum.mysensors.org/post/92670</guid><dc:creator><![CDATA[alowhum]]></dc:creator><pubDate>Fri, 28 Sep 2018 09:39:31 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Wed, 02 May 2018 11:06:07 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/fredswed" aria-label="Profile: fredswed">@<bdi>fredswed</bdi></a>, updated.</p>
]]></description><link>https://forum.mysensors.org/post/89444</link><guid isPermaLink="true">https://forum.mysensors.org/post/89444</guid><dc:creator><![CDATA[hek]]></dc:creator><pubDate>Wed, 02 May 2018 11:06:07 GMT</pubDate></item><item><title><![CDATA[Reply to 💬 OpenHAB on Wed, 02 May 2018 10:12:53 GMT]]></title><description><![CDATA[<p dir="auto">Can you please add a link/button at the top of the page - Download and installation - that links to <a href="https://github.com/tobof/openhab2-addons/wiki" rel="nofollow ugc">https://github.com/tobof/openhab2-addons/wiki</a><br />
It is a very useful page but also very hard to find.<br />
The two middle buttons should preferably be removed as the "Support Forum" button is sufficient.</p>
<ul>
<li>"OpenHAB binding" links to instructions for OpenHAB v1.x which is obsolete</li>
<li>"OpenHAB 2 binding" links to instructions for an old version of the plugin</li>
</ul>
]]></description><link>https://forum.mysensors.org/post/89442</link><guid isPermaLink="true">https://forum.mysensors.org/post/89442</guid><dc:creator><![CDATA[fredswed]]></dc:creator><pubDate>Wed, 02 May 2018 10:12:53 GMT</pubDate></item></channel></rss>