<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.satnogs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vittorio</id>
	<title>SatNOGS Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.satnogs.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Vittorio"/>
	<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/Special:Contributions/Vittorio"/>
	<updated>2026-04-20T11:21:34Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>https://wiki.satnogs.org/index.php?title=Antenna_switching&amp;diff=3733</id>
		<title>Antenna switching</title>
		<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/index.php?title=Antenna_switching&amp;diff=3733"/>
		<updated>2021-03-15T14:17:22Z</updated>

		<summary type="html">&lt;p&gt;Vittorio: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes it is necessary / useful to be able to switch between different antennas. In this way the observations can take place on different bands, or it is useful to have only one feeder, with excellent performance in terms of attenuation, from the antennas to the receiver.&lt;br /&gt;
&lt;br /&gt;
Read &amp;lt;u&amp;gt;carefully&amp;lt;/u&amp;gt; the full thread in [ https://community.libre.space/t/antenna-switching-project/2311 ], where it's possible to find different solutions, ranging from &amp;amp;quot;parallel&amp;amp;quot; control exploited via GPIO pins, to &amp;amp;quot;serial&amp;amp;quot; solution via USB connection or via RS485 (under tests) for longer physical connections.&lt;br /&gt;
&lt;br /&gt;
Several parts (software &amp;amp;amp; hardware) are necessary to activate this kind of control. Once the type of control has been established there are some software setting to be done, mainly to write scripts which will be performed before and after the observations.&lt;br /&gt;
&lt;br /&gt;
Firstly, run 'sudo satnogs-setup' , then into &amp;amp;quot;Advanced&amp;amp;quot; section edit the parameter SATNOGS_''PRE_''OBSERVATION_''SCRIPT to &amp;amp;lt;path_''to_script&amp;amp;gt;preob.sh -f &amp;lt;nowiki&amp;gt;{{ FREQ }}&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
In the same manner in satnogs-setup set the parameter SATNOGS_''POST_''OBSERVATION_''SCRIPT to &amp;amp;lt;path''_to_script&amp;amp;gt;postob.sh&lt;br /&gt;
&lt;br /&gt;
This, for example, is the content of preob.sh and postob.sh, invoked by the client to switch the correct antenna using an USB serial connection. Pay attention to the exact syntax and to the following described permissions on scripts and users:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''preob.sh''' : called just before observation starts, set the right antenna and write to the local satnogs log.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;#!/bin/bash&lt;br /&gt;
#set the ports up to known state and disable close between calls&lt;br /&gt;
stty -F /dev/ttyUSB0 9600 -hupcl&lt;br /&gt;
&lt;br /&gt;
date=`date +&amp;amp;quot;%d/%m/%y %H:%M:%S %Z&amp;amp;quot;`&lt;br /&gt;
freq=0&lt;br /&gt;
&lt;br /&gt;
while getopts f: option&lt;br /&gt;
do&lt;br /&gt;
case &amp;amp;quot;${option}&amp;amp;quot;&lt;br /&gt;
in&lt;br /&gt;
f) freq=${OPTARG};;&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
if ([ $freq -ge 399900000 ] &amp;amp;amp;&amp;amp;amp; [ $freq -lt 470000000 ]) ;&lt;br /&gt;
then&lt;br /&gt;
    echo &amp;amp;quot;$date --&amp;amp;gt; 399.9 to 470 frequency, ANT0 selected&amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&lt;br /&gt;
    echo -e &amp;amp;quot;ANT0\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if ([ $freq -ge 136000000 ] &amp;amp;amp;&amp;amp;amp; [ $freq -lt 150100000 ]) ;&lt;br /&gt;
then&lt;br /&gt;
    echo &amp;amp;quot;$date --&amp;amp;gt; 136 to 150.1 frequency, ANT1 selected&amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&lt;br /&gt;
    echo -e &amp;amp;quot;ANT1\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if ([ $freq -ge 24000000 ] &amp;amp;amp;&amp;amp;amp; [ $freq -lt 30000000 ]) ;&lt;br /&gt;
then&lt;br /&gt;
    echo &amp;amp;quot;$date --&amp;amp;gt; 24 to 30 frequency, ANT2 selected&amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&lt;br /&gt;
    echo -e &amp;amp;quot;ANT2\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
done&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''postob.sh''' : called at observation end, puts RF relays in ‘deactivated’ position and to setup a know switch position.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;#!/bin/bash&lt;br /&gt;
# disable all relays... no power waste!&lt;br /&gt;
&lt;br /&gt;
date=`date +&amp;amp;quot;%d/%m/%y %H:%M:%S %Z&amp;amp;quot;`&lt;br /&gt;
echo -e &amp;amp;quot;ANT0\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
echo &amp;amp;quot;$date antenna switch reset &amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please take note about the following mandatory permissions, because the scripts are executed as “satnogs” user:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;sudo usermod -a -G dialout satnogs&amp;lt;/code&amp;gt;, to access serial device by satnogs user&lt;br /&gt;
*&amp;lt;code&amp;gt;sudo usermod -a -G pi satnogs&amp;lt;/code&amp;gt;, to permit execution to satnogs as member of pi group&lt;br /&gt;
*&amp;lt;code&amp;gt;touch satnogs_log.txt&amp;lt;/code&amp;gt;, to create the log file&lt;br /&gt;
*&amp;lt;code&amp;gt;chmod 666 satnogs_log.txt&amp;lt;/code&amp;gt;, to permit everybody writing on this file&lt;br /&gt;
*&amp;lt;code&amp;gt;chmod +x preob.sh&amp;lt;/code&amp;gt;, set script to be executable&lt;br /&gt;
*&amp;lt;code&amp;gt;chmod +x postob.sh&amp;lt;/code&amp;gt;, set script to be executable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To test the whole stuff try to execute:&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;./preob.sh -f 435000000&lt;br /&gt;
&lt;br /&gt;
./postob.sh&lt;br /&gt;
&lt;br /&gt;
tail ./satnogs_log.txt&amp;lt;/pre&amp;gt;and satnogs_log.txt should contain something like:&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;18/02/21 12:15:25 GMT --&amp;amp;gt; 399.9 to 470 frequency, ANT0 selected&lt;br /&gt;
18/02/21 12:30:23 GMT antenna switch reset &amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vittorio</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.satnogs.org/index.php?title=Build&amp;diff=3732</id>
		<title>Build</title>
		<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/index.php?title=Build&amp;diff=3732"/>
		<updated>2021-03-15T14:05:47Z</updated>

		<summary type="html">&lt;p&gt;Vittorio: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Introduction==&lt;br /&gt;
&lt;br /&gt;
Building a ground station need not be complicated. There are a few things to consider when working out what it is you are going to do. Choices such as the desire to have a fixed or steerable ground station will play a big part in the amount of equipment needed and the time taken as well as the complexity of any build. If you are new to this and a little unsure then a fixed (no rotator) option is a good choice. If you fancy a challenge and want to pick out the weakest signals then the steerable ground station might be what you are after. There is more detail in the [[Ground Stations]] page&lt;br /&gt;
&lt;br /&gt;
The illustration below sets out the various major components to give an idea as to what is commonly used.&lt;br /&gt;
&lt;br /&gt;
==Options for Ground Stations==&lt;br /&gt;
&lt;br /&gt;
A satellite ground station is made up from different parts. The following diagram can help you select your setup based on your needs and/or your existing setup.&lt;br /&gt;
&lt;br /&gt;
[[File:Satnogs_imagemap.png|center]]&lt;br /&gt;
&lt;br /&gt;
Here are some links explaining the different options:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin: 0 auto;&amp;quot;&lt;br /&gt;
!Platform&lt;br /&gt;
!Controller&lt;br /&gt;
!Rotator&lt;br /&gt;
!Radio&lt;br /&gt;
!Antenna&lt;br /&gt;
|-&lt;br /&gt;
|[[Raspberry_Pi|Raspberry Pi]]&lt;br /&gt;
|[[SatNOGS Rotator Controller|SatNOGS Controller]]&lt;br /&gt;
|[[SatNOGS_Rotator_v3|SatNOGS Rotator]]&lt;br /&gt;
|[[Radio#SDR|SDR]]&lt;br /&gt;
|[[Antennas|Yagi]]&lt;br /&gt;
|-&lt;br /&gt;
|[[SatNOGS_Client_Ansible|Debian system]]&lt;br /&gt;
|[http://spid.net.pl/en/rot2prog-2/ Rot2Prog]&lt;br /&gt;
|[[SPID Big RAS]]&lt;br /&gt;
|&lt;br /&gt;
|[[Antennas|Helical]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Linux Desktop]]&lt;br /&gt;
|[[G-5500|lsf-g5500]]&lt;br /&gt;
|[[G-5500|Yaesu G5500]]&lt;br /&gt;
|&lt;br /&gt;
|[[Antennas|Vertical]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Fedora Installation|Linux Fedora (old)]]&lt;br /&gt;
|[https://wiki.satnogs.org/SatNOGS_Arduino_Uno/CNC_Shield_Based_Rotator_Controller Arduino UNO CNC Shield based controller]&lt;br /&gt;
|[[No rotator]]&lt;br /&gt;
|&lt;br /&gt;
|[[Antennas|Cross-Yagi]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|[https://community.libre.space/t/ramps-1-4-board-for-satnogs-rotator/3386 RAMPS 1.4 Board for SatNOGS Rotator]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{Message|Use the above table to select your setup. E.g. RPi3 &amp;gt; Yaesu G550 &amp;gt; SDR &amp;gt; UHF helical &amp;amp; VHF Cross Yagi}}&lt;br /&gt;
&lt;br /&gt;
==How do I pick?==&lt;br /&gt;
&lt;br /&gt;
'''Client''': The Raspberry Pi is the reference platform for SatNOGS, and is currently the option that has the best support from the community.  Certain SDRs may benefit from a more powerful CPU, like what you'd find in a desktop machine; however, currently you'll need to set that up on your own.&lt;br /&gt;
&lt;br /&gt;
'''Rotator''': A rotator, like the [[SatNOGS_Rotator_v3|SatNOGS Rotator v3]], will allow your antenna to follow satellites as they move across the sky, and thus pick up fainter signals.  But if you want to get started quickly, or don't have the hardware skills to build your own, you can still pick up stronger signals (the ISS, NOAA and Meteor weather satellites) with a [[No_rotator|no-rotator]] setup.  If you already have [https://github.com/Hamlib/Hamlib/wiki/Supported-Rotators a rotator supported by rotctl], you can use that.&lt;br /&gt;
&lt;br /&gt;
'''Signal Reception''': The reference radio for SatNOGS is the [https://www.rtl-sdr.com RTL-SDR v3], but other latest-generation SDRs like the [http://www.nooelec.com/store/nesdr-smart-sdr.html NooElec NESDR SMart] should work as well.  Higher-end SDRs should work as well, but can get a bit expensive.  Alternately, [https://sourceforge.net/p/hamlib/wiki/Supported%20Radios/ any radio supported by rigctl] should work.&lt;br /&gt;
&lt;br /&gt;
Amplification is generally done by a low noise amplifier, or LNA. There are multiple options:&lt;br /&gt;
&lt;br /&gt;
*A wide-band LNA next to your SDR (see [http://lna4all.blogspot.com/ LNA4ALL], [https://iz7boj.wordpress.com/2019/04/11/spf5189z-lna-measurements-on-vna/ SPF5189] and similar)&lt;br /&gt;
*A band specific (or two) pre-amplifiers next to your antennas ([http://www.wimo.com/mast-preamplifier_e.html example])&lt;br /&gt;
*No amplification at all...just pump the gain of your SDR.  (This is not recommended for the rtl-sdr.)&lt;br /&gt;
&lt;br /&gt;
'''Antenna''':  Stationary antennas (eg: [https://en.wikipedia.org/wiki/Turnstile_antenna Turnstile], [https://community.libre.space/t/parasitic-lindenblad-on-uhf/1128/2 Lindenblad]) will be easy to build and mount, as they won't require rotator hardware.  They will let you receive stronger broadcasts, like NOAA weather satellites and ISS broadcasts, but may not work for receiving fainter cubesat broadcasts.  Directional antennas (eg: Yagis, Helicals) can be more complicated to build, but will also require a rotator to track satellites across the sky.  The advantage is that they will let you pick up fainter broadcasts from cubesats or ham radio satellites. Sometimes it's useful the ability of [[Antenna switching|switch]] different antennas among observations.&lt;br /&gt;
&lt;br /&gt;
==Next steps==&lt;br /&gt;
&lt;br /&gt;
Once you have a ground station ready, you should go ahead and operate it! More info can be found on the [[Operation]] wiki page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Build]]&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>Vittorio</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.satnogs.org/index.php?title=Antenna_switching&amp;diff=3731</id>
		<title>Antenna switching</title>
		<link rel="alternate" type="text/html" href="https://wiki.satnogs.org/index.php?title=Antenna_switching&amp;diff=3731"/>
		<updated>2021-03-15T13:55:12Z</updated>

		<summary type="html">&lt;p&gt;Vittorio: Created page with &amp;quot;Sometimes it is necessary / useful to be able to switch between different antennas. In this way the observations can take place on different bands, or it is useful to have onl...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sometimes it is necessary / useful to be able to switch between different antennas. In this way the observations can take place on different bands, or it is useful to have only one feeder, with excellent performance in terms of attenuation, from the antennas to the receiver.&lt;br /&gt;
&lt;br /&gt;
Read &amp;lt;u&amp;gt;carefully&amp;lt;/u&amp;gt; the full thread in [ https://community.libre.space/t/antenna-switching-project/2311 ], where it's possible to find different solutions, ranging from &amp;amp;quot;parallel&amp;amp;quot; control exploited via GPIO pins, to &amp;amp;quot;serial&amp;amp;quot; solution via USB connection or via RS485 (under tests) for longer physical connections.&lt;br /&gt;
&lt;br /&gt;
Several parts (software &amp;amp;amp; hardware) are necessary to activate this kind of control. Once the type of control has been established there are some software setting to be done, mainly to write scripts which will be performed before and after the observations.&lt;br /&gt;
&lt;br /&gt;
Firstly, run 'sudo satnogs-setup' , then into &amp;amp;quot;Advanced&amp;amp;quot; section edit the parameter SATNOGS''PRE''OBSERVATION''SCRIPT to &amp;amp;lt;path_''to_script&amp;amp;gt;preob.sh -f &amp;lt;nowiki&amp;gt;{{ FREQ }}&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
In the same manner in satnogs-setup set the parameter SATNOGS''POST''OBSERVATION''SCRIPT to &amp;amp;lt;path''_to_script&amp;amp;gt;postob.sh&lt;br /&gt;
&lt;br /&gt;
This, for example, is the content of preob.sh and postob.sh, invoked by the client to switch the correct antenna using an USB serial connection. Pay attention to the exact syntax and to the following described permissions on scripts and users:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''preob.sh''' : called just before observation starts, set the right antenna and write to the local satnogs log.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;#!/bin/bash&lt;br /&gt;
#set the ports up to known state and disable close between calls&lt;br /&gt;
stty -F /dev/ttyUSB0 9600 -hupcl&lt;br /&gt;
&lt;br /&gt;
date=`date +&amp;amp;quot;%d/%m/%y %H:%M:%S %Z&amp;amp;quot;`&lt;br /&gt;
freq=0&lt;br /&gt;
&lt;br /&gt;
while getopts f: option&lt;br /&gt;
do&lt;br /&gt;
case &amp;amp;quot;${option}&amp;amp;quot;&lt;br /&gt;
in&lt;br /&gt;
f) freq=${OPTARG};;&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
if ([ $freq -ge 399900000 ] &amp;amp;amp;&amp;amp;amp; [ $freq -lt 470000000 ]) ;&lt;br /&gt;
then&lt;br /&gt;
    echo &amp;amp;quot;$date --&amp;amp;gt; 399.9 to 470 frequency, ANT0 selected&amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&lt;br /&gt;
    echo -e &amp;amp;quot;ANT0\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if ([ $freq -ge 136000000 ] &amp;amp;amp;&amp;amp;amp; [ $freq -lt 150100000 ]) ;&lt;br /&gt;
then&lt;br /&gt;
    echo &amp;amp;quot;$date --&amp;amp;gt; 136 to 150.1 frequency, ANT1 selected&amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&lt;br /&gt;
    echo -e &amp;amp;quot;ANT1\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
if ([ $freq -ge 24000000 ] &amp;amp;amp;&amp;amp;amp; [ $freq -lt 30000000 ]) ;&lt;br /&gt;
then&lt;br /&gt;
    echo &amp;amp;quot;$date --&amp;amp;gt; 24 to 30 frequency, ANT2 selected&amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&lt;br /&gt;
    echo -e &amp;amp;quot;ANT2\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
done&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''postob.sh''' : called at observation end, puts RF relays in ‘deactivated’ position and to setup a know switch position.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;#!/bin/bash&lt;br /&gt;
# disable all relays... no power waste!&lt;br /&gt;
&lt;br /&gt;
date=`date +&amp;amp;quot;%d/%m/%y %H:%M:%S %Z&amp;amp;quot;`&lt;br /&gt;
echo -e &amp;amp;quot;ANT0\n&amp;amp;quot; &amp;amp;gt; /dev/ttyUSB0&lt;br /&gt;
echo &amp;amp;quot;$date antenna switch reset &amp;amp;quot; &amp;amp;gt;&amp;amp;gt; /home/pi/tests/satnogs_log.txt&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please take note about the following mandatory permissions, because the scripts are executed as “satnogs” user:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;sudo usermod -a -G dialout satnogs&amp;lt;/code&amp;gt;, to access serial device by satnogs user&lt;br /&gt;
*&amp;lt;code&amp;gt;sudo usermod -a -G pi satnogs&amp;lt;/code&amp;gt;, to permit execution to satnogs as member of pi group&lt;br /&gt;
*&amp;lt;code&amp;gt;touch satnogs_log.txt&amp;lt;/code&amp;gt;, to create the log file&lt;br /&gt;
*&amp;lt;code&amp;gt;chmod 666 satnogs_log.txt&amp;lt;/code&amp;gt;, to permit everybody writing on this file&lt;br /&gt;
*&amp;lt;code&amp;gt;chmod +x preob.sh&amp;lt;/code&amp;gt;, set script to be executable&lt;br /&gt;
*&amp;lt;code&amp;gt;chmod +x postob.sh&amp;lt;/code&amp;gt;, set script to be executable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To test the whole stuff try to execute:&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;./preob.sh -f 435000000&lt;br /&gt;
&lt;br /&gt;
./postob.sh&lt;br /&gt;
&lt;br /&gt;
tail ./satnogs_log.txt&amp;lt;/pre&amp;gt;and satnogs_log.txt should contain something like:&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;18/02/21 12:15:25 GMT --&amp;amp;gt; 399.9 to 470 frequency, ANT0 selected&lt;br /&gt;
18/02/21 12:30:23 GMT antenna switch reset &amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Vittorio</name></author>
		
	</entry>
</feed>