<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Commenti a: ListComPort elencare la porte com associate ad Arduino	</title>
	<atom:link href="https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/feed/" rel="self" type="application/rss+xml" />
	<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/</link>
	<description>Tutorial in italiano per imparare a programmare usando Arduino, Raspberry PI, Netduino</description>
	<lastBuildDate>Tue, 02 Apr 2013 08:25:22 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		Di: Marco		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-2018</link>

		<dc:creator><![CDATA[Marco]]></dc:creator>
		<pubDate>Tue, 02 Apr 2013 08:25:22 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-2018</guid>

					<description><![CDATA[In risposta a &lt;a href=&quot;https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-1828&quot;&gt;Martin Zimmerman&lt;/a&gt;.

currently I have no plans to release the source code. I&#039;m developing a second version, probably open.


Marco]]></description>
			<content:encoded><![CDATA[<p>In risposta a <a href="https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-1828">Martin Zimmerman</a>.</p>
<p>currently I have no plans to release the source code. I&#8217;m developing a second version, probably open.</p>
<p>Marco</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Martin Zimmerman		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-1828</link>

		<dc:creator><![CDATA[Martin Zimmerman]]></dc:creator>
		<pubDate>Fri, 29 Mar 2013 16:44:11 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-1828</guid>

					<description><![CDATA[Is source available?]]></description>
			<content:encoded><![CDATA[<p>Is source available?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Marco		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-940</link>

		<dc:creator><![CDATA[Marco]]></dc:creator>
		<pubDate>Tue, 26 Feb 2013 07:47:44 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-940</guid>

					<description><![CDATA[In risposta a &lt;a href=&quot;https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-938&quot;&gt;jfrmilner&lt;/a&gt;.

great tips
thanks for your contribution

Marco Lai]]></description>
			<content:encoded><![CDATA[<p>In risposta a <a href="https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-938">jfrmilner</a>.</p>
<p>great tips<br />
thanks for your contribution</p>
<p>Marco Lai</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: jfrmilner		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-938</link>

		<dc:creator><![CDATA[jfrmilner]]></dc:creator>
		<pubDate>Mon, 25 Feb 2013 19:35:33 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-938</guid>

					<description><![CDATA[Hi,

I do this from PowerShell which will be installed on almost all Windows OSs. This is a simple one line command:
Get-WmiObject Win32_SerialPort &#124; Where-Object { $_.Name -match “Arduino”} &#124; Select-Object Description, DeviceID

Running this on my system with two Arduino connected I get:
Description DeviceID
———– ——–
Arduino Mega 2560 R3 COM5
Arduino UNO R3 COM4

Simple and quick.

Also here is an example of me using the above to automatically find my Arduino to send serial commands so I don’t need to check each time: http://jfrmilner.wordpress.com/2012/12/30/powershell-power-sockets-arduinorf-part-3-use-powershell-to-send-serial-commands-to-your-arduino/

Regards,
jfrmilner]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I do this from PowerShell which will be installed on almost all Windows OSs. This is a simple one line command:<br />
Get-WmiObject Win32_SerialPort | Where-Object { $_.Name -match “Arduino”} | Select-Object Description, DeviceID</p>
<p>Running this on my system with two Arduino connected I get:<br />
Description DeviceID<br />
———– ——–<br />
Arduino Mega 2560 R3 COM5<br />
Arduino UNO R3 COM4</p>
<p>Simple and quick.</p>
<p>Also here is an example of me using the above to automatically find my Arduino to send serial commands so I don’t need to check each time: <a href="http://jfrmilner.wordpress.com/2012/12/30/powershell-power-sockets-arduinorf-part-3-use-powershell-to-send-serial-commands-to-your-arduino/" rel="nofollow ugc">http://jfrmilner.wordpress.com/2012/12/30/powershell-power-sockets-arduinorf-part-3-use-powershell-to-send-serial-commands-to-your-arduino/</a></p>
<p>Regards,<br />
jfrmilner</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Ken Edgeworth		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-927</link>

		<dc:creator><![CDATA[Ken Edgeworth]]></dc:creator>
		<pubDate>Mon, 18 Feb 2013 23:10:06 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-927</guid>

					<description><![CDATA[Ciao

Molte grazie per la versione inglese.

Cin cin

Ken E]]></description>
			<content:encoded><![CDATA[<p>Ciao</p>
<p>Molte grazie per la versione inglese.</p>
<p>Cin cin</p>
<p>Ken E</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Mike King		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-922</link>

		<dc:creator><![CDATA[Mike King]]></dc:creator>
		<pubDate>Mon, 18 Feb 2013 16:50:59 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-922</guid>

					<description><![CDATA[Here are some other options.

http://github.com/todbot/usbSearch/]]></description>
			<content:encoded><![CDATA[<p>Here are some other options.</p>
<p><a href="http://github.com/todbot/usbSearch/" rel="nofollow ugc">http://github.com/todbot/usbSearch/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Brian Williams		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-914</link>

		<dc:creator><![CDATA[Brian Williams]]></dc:creator>
		<pubDate>Sun, 17 Feb 2013 11:05:44 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-914</guid>

					<description><![CDATA[In risposta a &lt;a href=&quot;https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-908&quot;&gt;Ken Edgeworth&lt;/a&gt;.

anch&#039;io!]]></description>
			<content:encoded><![CDATA[<p>In risposta a <a href="https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-908">Ken Edgeworth</a>.</p>
<p>anch&#8217;io!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Showcase your project: ListComPorts per Windows &#124; Linux-Support.com		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-912</link>

		<dc:creator><![CDATA[Showcase your project: ListComPorts per Windows &#124; Linux-Support.com]]></dc:creator>
		<pubDate>Sun, 17 Feb 2013 05:15:22 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-912</guid>

					<description><![CDATA[[...] Maggiori informazioni, così come il link per scaricare ListComPorts, possono essere trovate qui. [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Maggiori informazioni, così come il link per scaricare ListComPorts, possono essere trovate qui. [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Ken Edgeworth		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-908</link>

		<dc:creator><![CDATA[Ken Edgeworth]]></dc:creator>
		<pubDate>Fri, 15 Feb 2013 23:48:46 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-908</guid>

					<description><![CDATA[Ciao,

Mi piace il tuo programma pulito.

Sarebbe bello se questo può avere un progamma selezionare le opzioni di lingua italiana / inglese / tedesco ....
Ero dopo l&#039;inglese se non è molto da chiedere a questo aiuterà gli altri.

saluti
Ken

ps questo è stato tradotto dal Engish a Italiano]]></description>
			<content:encoded><![CDATA[<p>Ciao,</p>
<p>Mi piace il tuo programma pulito.</p>
<p>Sarebbe bello se questo può avere un progamma selezionare le opzioni di lingua italiana / inglese / tedesco &#8230;.<br />
Ero dopo l&#8217;inglese se non è molto da chiedere a questo aiuterà gli altri.</p>
<p>saluti<br />
Ken</p>
<p>ps questo è stato tradotto dal Engish a Italiano</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Di: Arduino Blog &#187; Blog Archive &#187; Showcase your project: ListComPorts per Windows		</title>
		<link>https://logicaprogrammabile.it/listcomport-elencare-port-com-rs232-arduino/#comment-907</link>

		<dc:creator><![CDATA[Arduino Blog &#187; Blog Archive &#187; Showcase your project: ListComPorts per Windows]]></dc:creator>
		<pubDate>Fri, 15 Feb 2013 16:01:03 +0000</pubDate>
		<guid isPermaLink="false">https://logicaprogrammabile.it/?p=3284#comment-907</guid>

					<description><![CDATA[[...] Maggiori informazioni, così come il link per scaricare ListComPorts, possono essere trovate qui. [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Maggiori informazioni, così come il link per scaricare ListComPorts, possono essere trovate qui. [&#8230;]</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
