<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Droids.it - Blogs</title>
		<link>http://www.droids.it/cmsvb4/blog.php</link>
		<description>This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http://www.vbulletin.com/ .</description>
		<language>en</language>
		<lastBuildDate>Sat, 25 May 2013 21:01:14 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.droids.it/cmsvb4/images/misc/rss.jpg</url>
			<title>Droids.it - Blogs</title>
			<link>http://www.droids.it/cmsvb4/blog.php</link>
		</image>
		<item>
			<title>555 Contest - Prizes shipped!</title>
			<link>http://www.droids.it/cmsvb4/entry.php?14-555-Contest-Prizes-shipped!</link>
			<pubDate>Thu, 19 May 2011 16:43:03 GMT</pubDate>
			<description>As you probably already know, we was sponsor of the cool 555 Contest (http://www.555contest.com/). Well, the contest has ended and the prizes...</description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">As you probably already know, we was sponsor of the cool <a href="http://www.555contest.com/" target="_blank">555 Contest</a>. Well, the contest has ended and the prizes assigned. We already shipped our prizes to the winners.<br />
<br />
Take few minutes to look at <a href="http://www.555contest.com/news/" target="_blank">how many amazing things</a> you can do with this little chip!</blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?14-555-Contest-Prizes-shipped!</guid>
		</item>
		<item>
			<title><![CDATA[[990.014 MuIn LCD] Firmware update v2.2.4]]></title>
			<link>http://www.droids.it/cmsvb4/entry.php?13-990.014-MuIn-LCD-Firmware-update-v2.2.4</link>
			<pubDate>Thu, 09 Dec 2010 15:01:47 GMT</pubDate>
			<description>An *updated firmware (http://www.droids.it/downloads/DR_UsbLcd_v2.2.4.zip)* released for the 990.014 MuIn LCD display, it reduces the delay needed...</description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">An <b><a href="http://www.droids.it/downloads/DR_UsbLcd_v2.2.4.zip" target="_blank">updated firmware</a></b> released for the 990.014 MuIn LCD display, it reduces the delay needed between commands on Arduino code and similar devices.<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_quote">
		<div class="quote_container">
			<div class="bbcode_quote_container"></div>
			
				<div class="bbcode_postedby">
					<img src="images/misc/quote_icon.png" alt="Quote" /> Originally Posted by <strong>Astrobeed</strong>
					<a href="showthread.php?p=1278#post1278" rel="nofollow"><img class="inlineimg" src="images/buttons/viewpost-right.png" alt="View Post" /></a>
				</div>
				<div class="message">attached the update to version 2.2.4 of the firmware.<br />
 <br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/VSnmYT3F2jI?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded">
	<param name="movie" value="http://www.youtube.com/v/VSnmYT3F2jI?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded" />
	<param name="wmode" value="direct" />
	<param name="allowfullscreen" value="true" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/VSnmYT3F2jI?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;feature=player_embedded" allowfullscreen="true" />
	<![endif]--></object>
 <br />
 <br />
I did the test with this sketch, is a bit more complex.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<pre class="bbcode_code"style="height:372px;"> 
void setup()
{
  Serial.begin(19200); 
}
int i;
void loop()
{
   clear();
   for (i = 1; i &lt; 101; i++)
   {
     bargraph(1,4,0,i);
     move(3,i/5);
     if(i&gt;5) printchar(4);
     move(2,10);
     Serial.print(i);
     move(1,5);
     Serial.print(i);
     move(1,15);
     Serial.print(i);
     delay(5); 
   }
}
void changeBaud()
{
  Serial.write(0xFE);
  Serial.write(0x39);
  Serial.write(0x01); 
  delay(3);
}
void clear()
{
  Serial.write(0xFE);
  Serial.write(0x58);
  delay(5);
}
void graphinit()
{
  Serial.write(0xFE);
  Serial.write(0x68);
  delay(3);
}
void bargraph(byte col, byte row, byte dir, byte length)
{
  Serial.write(0xFE);
  Serial.write(0x7C);
  Serial.write(col);
  Serial.write(row);
  Serial.write(dir);
  Serial.write(length);
  delay(5);
}
void printmsg(char *msg)
{
  Serial.print(msg); 
}
void printchar(char c)
{
  Serial.print(c);
}
void move(byte row, byte col)
{
  Serial.write(0xFE);
  Serial.write(0x47);
  Serial.write(row); 
  Serial.write(col);
  delay(3);
}</pre>
</div></div>
			
		</div>
	</div>
</div> </blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?13-990.014-MuIn-LCD-Firmware-update-v2.2.4</guid>
		</item>
		<item>
			<title>MuIn USB - How to connect Switches on PortB</title>
			<link>http://www.droids.it/cmsvb4/entry.php?12-MuIn-USB-How-to-connect-Switches-on-PortB</link>
			<pubDate>Mon, 06 Dec 2010 19:50:33 GMT</pubDate>
			<description><![CDATA[If you're going to connect some switches on your MuIn USB (using your firmware), you can consider using PORTB since it has integrated pull-up...]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">If you're going to connect some switches on your MuIn USB (using your firmware), you can consider using PORTB since it has integrated pull-up resistors: one pin of the switch will be connected to GND and other pin on PORTB Input. You'll detect the button pressed with some instructions like those:<br />
<br />
<span style="font-family: Microsoft Sans Serif">if (!LATBbits.LATBx) // x=0...7<br />
   {<br />
   // instructions to execute if button pressed<br />
   }<br />
else<br />
   {<br />
   // instructions to execute if button not pressed<br />
   }<br />
</span><br />
To activate integrated pullup resistors you must include portb.h library in top of your program:<br />
<br />
<span style="font-family: Microsoft Sans Serif">#include &lt;portb.h&gt;</span><br />
<br />
and the activate pullup resistors with dedicate function:<br />
<br />
<span style="font-family: Microsoft Sans Serif">EnablePullups();</span><br />
<br />
Notice tha inputs B0 and B1 are also used by I2C peripheral. If you want use them for switches, you must solder the I2C jumper-pads on the botton of MuIN USB however: solder pad 1 with pad 2 to connect an external pullup resistor on B0 and B1.<br />
<br />
If you don't do this, pushing a button on B0 will cause also B1 toggling and vice-versa.</blockquote>

 ]]></content:encoded>
			<dc:creator>Gianni</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?12-MuIn-USB-How-to-connect-Switches-on-PortB</guid>
		</item>
		<item>
			<title>A very simple stand for MuIN LCD</title>
			<link>http://www.droids.it/cmsvb4/entry.php?11-A-very-simple-stand-for-MuIN-LCD</link>
			<pubDate>Mon, 22 Nov 2010 18:24:40 GMT</pubDate>
			<description>Is quite simple make a simple stand for your MuIN LCD! All you need is: 
 
* A sheet of PVC...</description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">Is quite simple make a simple stand for your MuIN LCD! All you need is:<br />
<ul><li>A <a href="http://www.robot-italy.com/product_info.php?cPath=7_41&amp;products_id=251" target="_blank">sheet of PVC</a>, at least 110x110 millimeters</li>
<li>Ruler</li>
<li>Cutter</li>
<li>A pencil</li>
<li>A drill</li>
<li>4 <a href="http://www.robot-italy.com/product_info.php?cPath=7_135&amp;products_id=1181" target="_blank">F/F hex spacers</a>, 12mm height with <a href="http://www.robot-italy.com/product_info.php?cPath=7_134&amp;products_id=1158" target="_blank">screws</a></li>
<li>A Caliper (optional)</li>
</ul>Using Caliper or Ruler, measure your display's dimensions and paint the shapes on PVC using the pencil. The external dimensions I've used for the stand are 110 x 100mm:<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=571&amp;d=1290448907" id="attachment571" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=571&amp;d=1290448907" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_002.jpg
Views:	1534
Size:	93.4 KB
ID:	571" class="align_center size_medium" /></a></div><br />
<br />
<p style="text-align: left;">Cut the display window using the cutter and drill the 4 holes used to anchor display on the stand</p><br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=570&amp;d=1290448811" id="attachment570" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=570&amp;d=1290448811" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_001.jpg
Views:	255
Size:	102.4 KB
ID:	570" class="align_center size_medium" /></a></div><br />
<br />
<p style="text-align: left;">Screw-in the hex spacers on the back side of LCD. <br />
<br />
In the following pic you can see I've used 2 F/F 1.2mm Hex spacers on the upper side of LCD and 2 F/M 1.2mm Hex spacers on the back side. On the male side of 2 lower hex spacers I've screwed in 2 <a href="http://www.robot-italy.com/product_info.php?cPath=7_135&amp;products_id=1186" target="_blank">F/F 2.5mm hex spacers</a> and then I've attached here a small piece of a protoboard:<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=572&amp;d=1290449277" id="attachment572" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=572&amp;d=1290449277" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_003.jpg
Views:	246
Size:	95.9 KB
ID:	572" class="align_center size_medium" /></a></div><br />
<br />
<p style="text-align: left;">The protoboard is then connected on 8 pin male header of muin LCD using a female header soldered on the back side:<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=573&amp;d=1290449398" id="attachment573" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=573&amp;d=1290449398" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_004.jpg
Views:	236
Size:	99.8 KB
ID:	573" class="align_center size_medium" /></a></div></p><br />
<br />
Here you can see some other pics:<br />
<br />
<p style="text-align: center;"><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=574&amp;d=1290449506" id="attachment574" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=574&amp;d=1290449506" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_007.jpg
Views:	244
Size:	118.9 KB
ID:	574" class="size_medium" /></a><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=575&amp;d=1290449509" id="attachment575" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=575&amp;d=1290449509" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_005.jpg
Views:	244
Size:	96.5 KB
ID:	575" class="size_medium" /></a><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=576&amp;d=1290449511" id="attachment576" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=576&amp;d=1290449511" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_006.jpg
Views:	254
Size:	96.3 KB
ID:	576" class="size_medium" /></a><br />
<br />
<p style="text-align: left;">Finally you can attach LCD on the stand using 4 screws:<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=577&amp;d=1290449600" id="attachment577" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=577&amp;d=1290449600" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_008.jpg
Views:	244
Size:	83.6 KB
ID:	577" class="align_center size_medium" /></a></div><br />
<br />
<p style="text-align: left;">On the back side, in order to mantain the assembly in upper position, I've used two common &quot;L&quot; washers mounted on lower hex spacers:<br />
<br />
<p style="text-align: center;"><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=578&amp;d=1290450005" id="attachment578" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=578&amp;d=1286532863" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_009.jpg
Views:	245
Size:	110.3 KB
ID:	578" class="size_medium" /></a><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=579&amp;d=1290450041" id="attachment579" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=579&amp;d=1290450041" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_010.jpg
Views:	419
Size:	87.6 KB
ID:	579" class="size_medium" /></a><br />
<br />
<p style="text-align: left;">Your simple MuIN LCD stand is ready to display all that you want, just in front of you !!<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=580&amp;d=1290450141" id="attachment580" rel="Lightbox_11" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=580&amp;d=1286532866" border="0" alt="Click image for larger version

Name:	muin_lcd_stand_011.jpg
Views:	244
Size:	108.2 KB
ID:	580" class="align_center size_medium" /></a></div></p><br />
<br />
<br />
</p><br />
<br />
<br />
<br />
<br />
<br />
</p></p></p></p></p><br />
<br />
</p></p></p></p></blockquote>

 ]]></content:encoded>
			<dc:creator>Gianni</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?11-A-very-simple-stand-for-MuIN-LCD</guid>
		</item>
		<item>
			<title>Luigino?? Whaaat??</title>
			<link>http://www.droids.it/cmsvb4/entry.php?10-Luigino-Whaaat</link>
			<pubDate>Sat, 18 Sep 2010 13:27:39 GMT</pubDate>
			<description><![CDATA[Yes, the Luigino is born!  
 
[ATTACH=CONFIG]516[/ATTACH] 
 
What is the Luigino?  
 
Simple: the Luigino is our contribution to the huge world of...]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">Yes, the Luigino is born! <br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=516&amp;d=1284816134" id="attachment516" rel="Lightbox_10" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=516&amp;d=1284816134" border="0" alt="Click image for larger version

Name:	luigino_top_640.jpg
Views:	1886
Size:	71.2 KB
ID:	516" class="align_center size_medium" /></a></div><br />
<br />
What is the Luigino? <br />
<br />
Simple: the Luigino is our contribution to the huge world of Arduino microcontroller boards.<br />
<br />
Luigino is not a simple Arduino clone, each Luigino project has a special feature, something missing in the Arduino or something to add, or maybe something less of the Arduino, but at a ridicolous price; it is our interpretation of the Arduino project.<br />
<br />
Here it is the 1000Pads Luigino. A basic board, available in kit or assembled or bare board. Small, simple, reliable, easy, practical! <br />
<br />
Probably one of the cheapest Arduino compatible board on the market today!<br />
<br />
Let's say you have made your last Arduino based project, you have to put everything in a box with pots, switch, LED's and so on ... Why put a precious Arduino board inside a box? Just transfer the program in a 1000Pads Luigino! It's cheaper! Same features! <br />
<br />
Obviously you can also use Luigino for developing, you need a USB to Serial converter like our <a href="http://www.droids.it/cmsvb4/list.php?category/65-990.004" target="_blank">990.004</a> to program the Chip, then unplug the converter and the board is ready to run your application!<br />
<br />
Same form factor of our <a href="http://www.droids.it/cmsvb4/list.php?category/57-1000Pads" target="_blank">1000Pads System</a>: you can easily add RS485, XBee, USB, Proto, etc to the Luigino!<br />
<br />
The 1000Pads Luigino will be on sale at the end of September 2010</blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?10-Luigino-Whaaat</guid>
		</item>
		<item>
			<title>La MuIn dsPic recensita su settorezero.com!</title>
			<link>http://www.droids.it/cmsvb4/entry.php?9-La-MuIn-dsPic-recensita-su-settorezero.com!</link>
			<pubDate>Thu, 16 Sep 2010 14:51:31 GMT</pubDate>
			<description><![CDATA[Ringrazio *settorezero.com (http://www.settorezero.com/wordpress)* per l'ottima recensione sulla nostra recente scheda *MuIn dsPic...]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">Ringrazio <i><b><a href="http://www.settorezero.com/wordpress" target="_blank">settorezero.com</a></b></i> per l'ottima recensione sulla nostra recente scheda <b><a href="http://www.settorezero.com/wordpress/scheda-di-sviluppo-per-dspic-pic24-in-formato-dip28/" target="_blank">MuIn dsPic</a></b> basata su <b><b>dsPIC33FJ128GP802</b>!<br />
<br />
</b><p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=515&amp;d=1284648605" id="attachment515" rel="Lightbox_9" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=515&amp;d=1284648605" border="0" alt="Click image for larger version

Name:	Logo_SettoreZero.png
Views:	736
Size:	14.4 KB
ID:	515" class="align_center size_medium" /></a></div><br />
<br />
<br />
<p style="text-align: left;"><a href="http://www.droids.it/cmsvb4/list.php?category/66-990.012" target="_blank">990.012 MuIn dsPic - Risorse</a><br />
</p> </p></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?9-La-MuIn-dsPic-recensita-su-settorezero.com!</guid>
		</item>
		<item>
			<title>MuIn LCD Mixed Wired/Wireless Multipoint Data Exchange Example</title>
			<link>http://www.droids.it/cmsvb4/entry.php?8-MuIn-LCD-Mixed-Wired-Wireless-Multipoint-Data-Exchange-Example</link>
			<pubDate>Sat, 07 Aug 2010 15:44:13 GMT</pubDate>
			<description>This is an example of the capabilities of the MuIn LCD new boards. The PC can send data and make requests to the MuIn LCD boards. The MuIn LCD’s can...</description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">This is an example of the capabilities of the MuIn LCD new boards. The PC can send data and make requests to the MuIn LCD boards. The MuIn LCD’s can read analog/digital devices attached to<br />
the GPIO, can display information sent from the PC, can Beep using the on-board Speaker, and more...<br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=486&amp;d=1281195734" id="attachment486" rel="Lightbox_8" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=486&amp;d=1281195734" border="0" alt="Click image for larger version

Name:	MuinLCD_485_XB_demo.jpg
Views:	635
Size:	71.0 KB
ID:	486" class="align_center size_medium" /></a></div></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?8-MuIn-LCD-Mixed-Wired-Wireless-Multipoint-Data-Exchange-Example</guid>
		</item>
		<item>
			<title>MuIn LCD e sistemi operativi non Windows</title>
			<link>http://www.droids.it/cmsvb4/entry.php?7-MuIn-LCD-e-sistemi-operativi-non-Windows</link>
			<pubDate>Tue, 06 Jul 2010 00:11:46 GMT</pubDate>
			<description><![CDATA[[ATTACH=CONFIG]395[/ATTACH] [ATTACH=CONFIG]396[/ATTACH] 
 
 
 
---Quote (Originally by Astrobeed)--- 
Ho provato la MuIn LCD con Ubuntu 10.04 sia da...]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=395&amp;d=1278375001" id="attachment395" rel="Lightbox_7" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=395&amp;d=1277998832" border="0" alt="Click image for larger version

Name:	muin_lcd_front_iso_1024.jpg
Views:	632
Size:	65.6 KB
ID:	395" class="align_center size_medium" /></a></div> <div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=396&amp;d=1278375045" id="attachment396" rel="Lightbox_7" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=396&amp;d=1277935196" border="0" alt="Click image for larger version

Name:	muinlcd_low_iso_1024.jpg
Views:	637
Size:	123.9 KB
ID:	396" class="align_center size_medium" /></a></div><br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_quote">
		<div class="quote_container">
			<div class="bbcode_quote_container"></div>
			
				<div class="bbcode_postedby">
					<img src="images/misc/quote_icon.png" alt="Quote" /> Originally Posted by <strong>Astrobeed</strong>
					
				</div>
				<div class="message">Ho provato la MuIn LCD con Ubuntu 10.04 sia da macchina virtuale (VmWare) che in modalità nativa.<br />
Con la precedente release di Ubuntu, la 9.04, la MuIn LCD non veniva riconosciuta come device USB di tipo CDC ed era necessario modificare e ricompilare la usblib oltre ad installare alcuni pacchetti aggiuntivi non disponibili sul repository di Ubuntu, in questo caso la procedura di installazione è abbastanza macchinosa e non alla portata di tutti gli utenti perchè richiede una grande dimestichezza con la riga di comando del terminale.<br />
Con l'attuale versione di Ubuntu, la 10.04, la MuIn LCD viene riconosciuta correttamente e montata come /dev/ttyACM0, non si riesce a dialogarci tramite minicom, un semplice programma di emulazione terminale, mentre funziona perfettamente con GTKterm, è necessario rinominare il nome del device perchè quello assegnato è utilizzabile dal programma, basta usare questo semplice comando previo login come root.<br />
<br />
sudo ln -s /dev/ACM0 /dev/USB0 <br />
<br />
In questo modo ACM0 diventa USB0 e può essere usato da GTKterm.</div>
			
		</div>
	</div>
</div> </blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?7-MuIn-LCD-e-sistemi-operativi-non-Windows</guid>
		</item>
		<item>
			<title>Stacking multiple boards</title>
			<link>http://www.droids.it/cmsvb4/entry.php?6-Stacking-multiple-boards</link>
			<pubDate>Wed, 30 Jun 2010 22:09:30 GMT</pubDate>
			<description>Our new MuIn Boards are all the same Credit Card Form Factor, about 85 x 53 mm. All these boards are STACKABLE! This mean you can save space and...</description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">Our new MuIn Boards are all the same Credit Card Form Factor, about 85 x 53 mm. All these boards are STACKABLE! This mean you can save space and reduce cables, the application is more compact and reliable...<br />
<br />
<p style="text-align: center;">This is a MuIn USB stacked on a MuIn LCD<br />
</p><br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=352&amp;d=1277935561" id="attachment352" rel="Lightbox_6" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=352&amp;d=1277935193" border="0" alt="Click image for larger version

Name:	muinlcd_stack_1024.jpg
Views:	624
Size:	166.5 KB
ID:	352" class="align_center size_medium" /></a></div><br />
<br />
<p style="text-align: center;">This is a MuIn dsPic stacked on a MuIn dsNav and two Motor Drivers Tank 3A, a typical PID navigation system:<br />
</p><br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=350&amp;d=1277935515" id="attachment350" rel="Lightbox_6" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=350&amp;d=1277935202" border="0" alt="Click image for larger version

Name:	muindspic_stack4_1024.jpg
Views:	645
Size:	111.0 KB
ID:	350" class="align_center size_medium" /></a></div><br />
<br />
<p style="text-align: center;">This is a MuIn dsPic stacked on a MuIn dsNav and a Tank 3A Motor Driver:<br />
</p><br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=351&amp;d=1277935515" id="attachment351" rel="Lightbox_6" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=351&amp;d=1277935199" border="0" alt="Click image for larger version

Name:	muindspic_stack_1024.jpg
Views:	124
Size:	141.4 KB
ID:	351" class="align_center size_medium" /></a></div></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?6-Stacking-multiple-boards</guid>
		</item>
		<item>
			<title>Another two boards available ....</title>
			<link>http://www.droids.it/cmsvb4/entry.php?5-Another-two-boards-available-....</link>
			<pubDate>Wed, 30 Jun 2010 22:02:04 GMT</pubDate>
			<description><![CDATA[This time we are talking about visualization: the MuIn LCD is an intelligent serial LCD Display, with advanced features. What about DSP's? Here it is...]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">This time we are talking about visualization: the MuIn LCD is an intelligent serial LCD Display, with advanced features. What about DSP's? Here it is the MuIn dsPic, if you want to experiment with this powerful MCU or if you need it for your next application; the MuIn dsPic is your board!<br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=345&amp;d=1277935196" id="attachment345" rel="Lightbox_5" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=345&amp;d=1277935196" border="0" alt="MuIn LCD" class="align_center size_medium" title="MuIn LCD" /></a></div><br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=348&amp;d=1277935206" id="attachment348" rel="Lightbox_5" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=348&amp;d=1277935206" border="0" alt="MuIn dsPic" class="align_center size_medium" title="MuIn dsPic" /></a></div></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?5-Another-two-boards-available-....</guid>
		</item>
		<item>
			<title>The Wait is Over! The new Boards arrived!</title>
			<link>http://www.droids.it/cmsvb4/entry.php?4-The-Wait-is-Over!-The-new-Boards-arrived!</link>
			<pubDate>Wed, 30 Jun 2010 01:52:36 GMT</pubDate>
			<description>We just received a small batch of the new Boards! 
The manufacturing is pretty good, the quality and performance is, as always, top!! 
 
Here showed...</description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">We just received a small batch of the new Boards!<br />
The manufacturing is pretty good, the quality and performance is, as always, top!!<br />
<br />
Here showed the MuIn dsNav and MuIn USB with optional XBee module. XBee, UART, RS485, I2C, these are only few of the features of these new boards, take a look at the specifications in the <b><a href="http://www.droids.it/cmsvb4/content.php?125-Products" target="_blank">products</a></b> section! :cool:<br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=332&amp;d=1277862403" id="attachment332" rel="Lightbox_4" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=332&amp;d=1277862403" border="0" alt="MuIn dsNav" class="align_center size_medium" title="MuIn dsNav" /></a></div><br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=333&amp;d=1277862406" id="attachment333" rel="Lightbox_4" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=333&amp;d=1277862406" border="0" alt="MuIn USB" class="align_center size_medium" title="MuIn USB" /></a></div><br />
<br />
continue ...</blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?4-The-Wait-is-Over!-The-new-Boards-arrived!</guid>
		</item>
		<item>
			<title>990.004 Back in stock!!</title>
			<link>http://www.droids.it/cmsvb4/entry.php?3-990.004-Back-in-stock!!</link>
			<pubDate>Fri, 18 Jun 2010 11:56:53 GMT</pubDate>
			<description><![CDATA[Our popular FTDI FT232 based USB->RS232 converter is back in stock!  
 
[ATTACH=CONFIG]211[/ATTACH]]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">Our popular FTDI FT232 based USB-&gt;RS232 converter is back in stock! <br />
<br />
<div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=211&amp;d=1276862153" id="attachment211" rel="Lightbox_3" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=211&amp;d=1276862153" border="0" alt="Click image for larger version

Name:	990004_back_low.jpg
Views:	620
Size:	137.0 KB
ID:	211" class="align_center size_large" /></a></div></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?3-990.004-Back-in-stock!!</guid>
		</item>
		<item>
			<title>MuIn LCD - Final Testing...</title>
			<link>http://www.droids.it/cmsvb4/entry.php?2-MuIn-LCD-Final-Testing...</link>
			<pubDate>Fri, 28 May 2010 20:27:26 GMT</pubDate>
			<description><![CDATA[The NEW MuIn LCD is almost ready, we're doing final testing, it will be on sale in mid june, probably.... 
 
[ATTACH=CONFIG]38[/ATTACH]]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">The NEW MuIn LCD is almost ready, we're doing final testing, it will be on sale in mid june, probably....<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=38&amp;d=1275078415" id="attachment38" rel="Lightbox_2" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=38&amp;d=1275078415" border="0" alt="Click image for larger version

Name:	muin_LCD_finaltesting.jpg
Views:	404
Size:	38.1 KB
ID:	38" class="align_center size_medium" /></a></div><br />
</p></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?2-MuIn-LCD-Final-Testing...</guid>
		</item>
		<item>
			<title>990.009 Tank 3A Almost ready to launch!</title>
			<link>http://www.droids.it/cmsvb4/entry.php?1-990.009-Tank-3A-Almost-ready-to-launch!</link>
			<pubDate>Thu, 27 May 2010 02:11:31 GMT</pubDate>
			<description><![CDATA[The TANK motor controller is ready, just finish writing documentation and packing the units... 
 
[ATTACH=CONFIG]37[/ATTACH]]]></description>
			<content:encoded><![CDATA[<blockquote class="blogcontent restore">The TANK motor controller is ready, just finish writing documentation and packing the units...<br />
<br />
<p style="text-align: center;"><div class="img_align_center "><a href="http://www.droids.it/cmsvb4/attachment.php?attachmentid=37&amp;d=1274926204" id="attachment37" rel="Lightbox_1" ><img src="http://www.droids.it/cmsvb4/attachment.php?attachmentid=37&amp;d=1274926204" border="0" alt="Click image for larger version

Name:	990009_fan_800_iso2.jpg
Views:	358
Size:	51.4 KB
ID:	37" class="align_center size_medium" /></a></div><br />
</p></blockquote>

 ]]></content:encoded>
			<dc:creator>DroidsMaster</dc:creator>
			<guid isPermaLink="true">http://www.droids.it/cmsvb4/entry.php?1-990.009-Tank-3A-Almost-ready-to-launch!</guid>
		</item>
	</channel>
</rss>
