<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Software - BruControl Forum				            </title>
            <link>https://brucontrol.com/community/software/</link>
            <description>BruControl Discussion Board</description>
            <language>en</language>
            <lastBuildDate>Fri, 17 Apr 2026 07:18:57 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Reset Arduino from Brucontrol</title>
                        <link>https://brucontrol.com/community/software/reset-arduino-from-brucontrol/</link>
                        <pubDate>Mon, 16 Mar 2026 06:12:18 +0000</pubDate>
                        <description><![CDATA[Please can you advise? I&#039;m monitoring and controling and steering fermentation with Brucontrol. Unfortunately, arduino&#039;s fall off from the network regularly. I have a protocol arduino_detect...]]></description>
                        <content:encoded><![CDATA[<p>Please can you advise? I'm monitoring and controling and steering fermentation with Brucontrol. Unfortunately, arduino's fall off from the network regularly. I have a protocol arduino_detection.bcs (runs inside BruControl every 60s)</p>
<p>→ checks MEGA.connected<br />→ sets Arduino1_Online = 1 or 0<br />→ can fires tx "MEGA" %N if offline<br />→ sets Arduino1_RebootFailed = 1 if still offline after 15s<br />↓ BruControl API<br />arduino_monitor.py (runs on your PC)<br />→ reads Arduino1_Online from API every 60s<br />→ logs OFFLINE / BACK ONLINE on state changes only.</p>
<p><code class="font-mono text-xs break-all">FOR TESTING I would need the %N BruControl reboot command, can you please provide the %N reboot command? Tahnk you. </code></p>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal">
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//  Arduino Controller Monitor &amp; Reboot</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//  File: arduino_detection.bcs</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//  Run this script on a timer (recommended: every 60 seconds)</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//  What it does:</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//    1. Checks each Arduino controller's built-in .connected status</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//    2. Updates Arduino1_Online / Arduino2_Online / Arduino3_Online globals</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//       (1 = online, 0 = offline) — Python reads these from the API</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//    3. If a controller is offline, sends the reboot command</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//    4. Waits 15s then checks if it recovered</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal">
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//    5. Sets ArduinoX_RebootFailed = 1 if still offline after reboot</code></div>
<div> </div>
</div>
<div>
<div>The Brucontrol script suggested</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal">
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">if  == true</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    set  = 1</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    set  = 0</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">else</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    set  = 0</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    tx "MEGA" %N                    // ← replace %N with reboot command</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    sleep 15000                     // wait 15s for controller to reboot</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    if  == true</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">        set  = 1</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">        set  = 0</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    else</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">        set  = 1   // flag for dashboard indicator</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">    endif</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">endif</code></div>
</div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//</code></div>
</div>
<div class="group flex border-l- border-l-transparent transition-colors duration-75" data-diff-type="normal"><span class="flex items-center justify-center font-mono text-xs select-none relative w-3 text-text-500"><span></span></span>
<div class="flex-1 flex items-center pl-0 pr-2 group-data-/overlay:pr-6 min-w-0 font-mono"><code class="font-mono text-xs break-all">//  NOTE: After replacing %N with the correct BruControl reboot command I can test it. Thank you in advnce for your support! Any other idea?</code></div>
</div>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>Lauran Casteleijn</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/reset-arduino-from-brucontrol/</guid>
                    </item>
				                    <item>
                        <title>PID control not turning down output</title>
                        <link>https://brucontrol.com/community/software/pid-control-not-turning-down-output/</link>
                        <pubDate>Fri, 14 Apr 2023 02:24:36 +0000</pubDate>
                        <description><![CDATA[I have my panel set up and doing water runs from am esp32.  I have an Rtd temp measurement reading accurately and feeding its measurement into a PID controller. The PID controller appears to...]]></description>
                        <content:encoded><![CDATA[<p>I have my panel set up and doing water runs from am esp32.  I have an Rtd temp measurement reading accurately and feeding its measurement into a PID controller. The PID controller appears to be working properly except it remains at 255 output even after passing target. The heating element just stays on because the output is staying at 255.  Any insight as to what I might have set up wrong?</p>
<p>Thanks, </p>
<p>Jason</p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>Jason Thomas</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/pid-control-not-turning-down-output/</guid>
                    </item>
				                    <item>
                        <title>Firmware on Rugged Arduino</title>
                        <link>https://brucontrol.com/community/software/firmware-on-rugged-arduino/</link>
                        <pubDate>Tue, 05 Jul 2022 16:29:52 +0000</pubDate>
                        <description><![CDATA[Hello,
I am trying to put the BC firmware on one of these:.  In the device manager of my computer, instead of showing up on a COM port, the MEGA shows up under &quot;Other devices&quot; as &quot;FT231X US...]]></description>
                        <content:encoded><![CDATA[<p>Hello,</p>
<p>I am trying to put the BC firmware on one of these: https://www.rugged-circuits.com/microcontroller-boards/rugged-mega .  In the device manager of my computer, instead of showing up on a COM port, the MEGA shows up under "Other devices" as "FT231X USB UART". I'm not much of a computer person, any ideas of the course of action I take to install the BC firmware? </p>
<p>Thanks,</p>
<p>Ryan</p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>artie17</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/firmware-on-rugged-arduino/</guid>
                    </item>
				                    <item>
                        <title>Probe offset</title>
                        <link>https://brucontrol.com/community/software/probe-offset/</link>
                        <pubDate>Wed, 22 Jun 2022 12:46:35 +0000</pubDate>
                        <description><![CDATA[I&#039;m trying to calibrate one of my ds18b20 probes which is reading wrong (when compared to a lab thermometer) so I added a negative linear offset to the probe element.
When using this probe ...]]></description>
                        <content:encoded><![CDATA[<p>I'm trying to calibrate one of my ds18b20 probes which is reading wrong (when compared to a lab thermometer) so I added a negative linear offset to the probe element.</p>
<p>When using this probe as an input for a heater output element, although it shows the calibrated value as the input, it still seems to be using the initial value for the control</p>
<p> </p>
<p>Example: initial value is 15, after calibration (linear offset of -5) it reads 10.</p>
<p>I then set an output target of anywhere between 10-15 and there's no output, go above 15 and it gives an output.</p>
<p>Not sure if I'm missing something obvious here but just can't seem to figure it out.</p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>chris24680</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/probe-offset/</guid>
                    </item>
				                    <item>
                        <title>Data Exchange Bug; extended character set(s)</title>
                        <link>https://brucontrol.com/community/software/data-exchange-bug-extended-character-sets/</link>
                        <pubDate>Sat, 09 Apr 2022 16:19:17 +0000</pubDate>
                        <description><![CDATA[FYI found a bug this morning while importing a recipe from Brewfather. I have a Python script that pulls batch data from Brewfather and imports it into Brewcontrol globals using the data exc...]]></description>
                        <content:encoded><![CDATA[<p>FYI found a bug this morning while importing a recipe from Brewfather. I have a Python script that pulls batch data from Brewfather and imports it into Brewcontrol globals using the data exchange interface. I narrowed the problem down to an 'o' character with an umlaut. When the JSON contains this character (guessing other non ASCII as well?) the server returns a non 200 code. Below is the exact JSON posted to repro. The offending character is in the first value field; </p>
<p>     </p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>Trystan Williams</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/data-exchange-bug-extended-character-sets/</guid>
                    </item>
				                    <item>
                        <title>Intermittent loss of one-wire sensors</title>
                        <link>https://brucontrol.com/community/software/intermittent-loss-of-one-wire-sensors/</link>
                        <pubDate>Wed, 08 Dec 2021 16:42:28 +0000</pubDate>
                        <description><![CDATA[Hardware: ESP32 w/ Firmware v. 45. 
I&#039;m seeing BruControl appear to lose track of one-wire sensors every few days or so of continuous running. I have two sensors attached, sometimes only on...]]></description>
                        <content:encoded><![CDATA[<p>Hardware: ESP32 w/ Firmware v. 45. </p>
<p>I'm seeing BruControl appear to lose track of one-wire sensors every few days or so of continuous running. I have two sensors attached, sometimes only one is lost but more often both go down (BruControl interface shows --- for the temp reading). Other components are still functional though, as I can still manipulate pumps etc. Power cycling the ESP32 fixes the issue. </p>
<p>Any idea what may be happening? Let me know if there is additional info I can provide to debug. As a temporary mitigation method, is there a way I can detect a null reading / disabled sensor in a script?   </p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>Trystan Williams</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/intermittent-loss-of-one-wire-sensors/</guid>
                    </item>
				                    <item>
                        <title>Found 4 Bugs in BruControl Beta Release (v1.1.0.20)</title>
                        <link>https://brucontrol.com/community/software/found-4-bugs-in-brucontrol-beta-release-v1-1-0-20/</link>
                        <pubDate>Mon, 28 Jun 2021 02:17:18 +0000</pubDate>
                        <description><![CDATA[I found four minor bugs in the beta release of the software. Should I post this issues here, or are bugs being tracked elsewhere?]]></description>
                        <content:encoded><![CDATA[<p>I found four minor bugs in the beta release of the software. Should I post this issues here, or are bugs being tracked elsewhere?</p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>davidvititoe70</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/found-4-bugs-in-brucontrol-beta-release-v1-1-0-20/</guid>
                    </item>
				                    <item>
                        <title>PID Malfunction</title>
                        <link>https://brucontrol.com/community/software/pid-malfunction/</link>
                        <pubDate>Wed, 23 Jun 2021 16:33:29 +0000</pubDate>
                        <description><![CDATA[When trying to tune my PIDs, I noted they were not responding correctly.  I use all metric units, and I only got them to respond correctly when deleting the Fahrenheit to Celsius calibration...]]></description>
                        <content:encoded><![CDATA[<p>When trying to tune my PIDs, I noted they were not responding correctly.  I use all metric units, and I only got them to respond correctly when deleting the Fahrenheit to Celsius calibration for the 1-wire temp sensor.  I do have a small (&lt;2°C) linear offset on most of my temp sensors, but when this offset was deleted, there was no effect on the PID function.  I assume this is a BC software error, and I'm wondering if this was corrected in a different version.  I'm using v1.1 build 4.  Thank you.</p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>tgodsill</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/pid-malfunction/</guid>
                    </item>
				                    <item>
                        <title>Tilt Temp Input for Hysteresis Output?</title>
                        <link>https://brucontrol.com/community/software/tilt-temp-input-for-hysteresis-output/</link>
                        <pubDate>Tue, 23 Feb 2021 19:08:18 +0000</pubDate>
                        <description><![CDATA[Greetings!
 
Is it possible to use the temp reading from a Tilt as the input device for a hysteresis output?  I can write a script for this, but it would be much easier to have the availab...]]></description>
                        <content:encoded><![CDATA[<p>Greetings!</p>
<p> </p>
<p>Is it possible to use the temp reading from a Tilt as the input device for a hysteresis output?  I can write a script for this, but it would be much easier to have the availability within the drop down menu for the input device.</p>
<p> </p>
<p>Thanks!</p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>tgodsill</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/tilt-temp-input-for-hysteresis-output/</guid>
                    </item>
				                    <item>
                        <title>Problem with indexing of onewire sensors</title>
                        <link>https://brucontrol.com/community/software/problem-with-indexing-of-onewire-sensors/</link>
                        <pubDate>Sat, 20 Feb 2021 18:32:44 +0000</pubDate>
                        <description><![CDATA[Hi.
I am running in to a porblem with the indexing of the one-wire sensors. 
First off, a bit about the system. I have a control panel where the mega, ssrs and other equipment is stored. T...]]></description>
                        <content:encoded><![CDATA[<p>Hi.</p>
<p>I am running in to a porblem with the indexing of the one-wire sensors. </p>
<p>First off, a bit about the system. I have a control panel where the mega, ssrs and other equipment is stored. The panel has 4 ports of XLR female sockets that the sensor probes plug into.</p>
<p>A few weeks ago I had the system up and running and calibrated the SSRs roughly. Everything worked flawlessly. During a few days I calibrated it all. </p>
<p>Now I come back after two weeks idle(bad weather) and without having unplugged the temperature probes, they were suddenly indexed differently... Mind you, the Arduino had been shut down/turned off in the mean time. HLT temperatureprobe was suddenly in BK etc.</p>
<p>are there any plans to incorporate address assigning to device widgets instead of playing onewire roulette in the future?</p>
<p>I have a script that automatically enables PIDBOIL and HLTBOIL in that order. Should I have a wait(300) between them, would that make any difference?</p>
<p>Any other things I should check. I hope to avoid having to reassign them before every brew day.... </p>
<p> </p>]]></content:encoded>
						                            <category domain="https://brucontrol.com/community/software/">Software</category>                        <dc:creator>MaltAndMayhem</dc:creator>
                        <guid isPermaLink="true">https://brucontrol.com/community/software/problem-with-indexing-of-onewire-sensors/</guid>
                    </item>
							        </channel>
        </rss>
		