<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>VIve LabVIEW</title>
	<atom:link href="http://mylabviewtshare.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mylabviewtshare.wordpress.com</link>
	<description>Share your knowledge, reach your goals !</description>
	<lastBuildDate>Sun, 13 Nov 2011 22:50:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mylabviewtshare.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>VIve LabVIEW</title>
		<link>http://mylabviewtshare.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mylabviewtshare.wordpress.com/osd.xml" title="VIve LabVIEW" />
	<atom:link rel='hub' href='http://mylabviewtshare.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Building a Comment parser inspired on Python &amp; C/C++.</title>
		<link>http://mylabviewtshare.wordpress.com/2011/05/23/building-a-comment-parser-inspired-on-python-cc/</link>
		<comments>http://mylabviewtshare.wordpress.com/2011/05/23/building-a-comment-parser-inspired-on-python-cc/#comments</comments>
		<pubDate>Mon, 23 May 2011 06:24:37 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=361</guid>
		<description><![CDATA[Hi again&#8230;  after a while without posting anything,  I am here . The initial idea with this blog, was to post information related with NI LabVIEW programming environment for the Spanish Speakers, this because there are few LabVIEW resources in Spanish compared against English, but I have received many suggestions from non Spanish speakers so I have been consider seriously <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=361&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi again&#8230;  after a while without posting anything,  I am here .</p>
<p>The initial idea with this blog, was to post information related with NI LabVIEW programming environment for the Spanish Speakers, this because there are few LabVIEW resources in Spanish compared against English, but I have received many suggestions from non Spanish speakers so I have been consider seriously post in English also. I am not a native English Speaker, and I hate to use  on-line translators, So I will do my best.</p>
<p>This time let&#8217;s review a code I developed months ago, this is comment parser based on Python &amp; C/ C++.</p>
<p>You could wonder how come  a comment parser could be useful for a graphical programming environment such as LabVIEW?</p>
<p>It is quite common to use external files in our projects: Test executives or Script runners, configuration files, etc.</p>
<p>This is where a Comment parser could be useful.</p>
<p>This is an specific example of a Script runner application, where the commands could be saved in external files to call them later if needed.  The application send those commands to a micro controller, and the micro controller firmware process it and returns a value for each command.</p>
<pre>W//xxx;
WR107ABB1;
R108458E2;
Wait(100);
W104D02C4;</pre>
<p>Despite of the possible documentation about those commands, it could be handy have a small description of each command&#8230; So here is where a comment parser makes sense.</p>
<pre>W//1234;       # This command give access to the : enter test mode.
WR107ABB1;     # Sets a temperature value.
R108458E2;     # Reads the current temperature setpoint.
Wait(100);     # Waits 100 mS.... this is command is not for the firmware, 
               # this command is processed by LabVIEW application.
W104D02C4;     #Locks the enter access mode.</pre>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_python-commenting-style_2.png" target="_blank"><img class="aligncenter size-large wp-image-378" title="Comment parser_Python commenting style_2" src="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_python-commenting-style_2.png?w=1024&#038;h=575" alt="" width="1024" height="575" /></a></p>
<p style="text-align:left;">Now, the external Script contains the commands which makes more readable using comments, this VI parsed out the comments and returns the commands which invokes firmware functions Notice for this particular case I use the Python comment style, because  C/C++ comment convention is not recommended since the first command (W//1234;) contains the &#8220;//&#8221; characters which in C/C++ are considered as comment line&#8230; If the C/C++ convention is used for this particular case all the text after the &#8220;W&#8221;  will be swept out.</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_c-commenting-style2.png" target="_blank"><img class="aligncenter size-large wp-image-379" title="Comment parser_C++ commenting style2" src="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_c-commenting-style2.png?w=1024&#038;h=575" alt="" width="1024" height="575" /></a></p>
<p style="text-align:left;">Different example,  using again a Script runner or test executive.</p>
<pre>/*Test sequence for BP products*/

#define CONST_VAR1 3.000
#define CONST_VAR2 2.502
#define CONST_SR 20000
#define CONST_SA 2000
//#include&lt;C:\a.txt&gt;
BP.Init
BP.PowerOn adjVdc(5.105)
BP.Gain (CONST_VAR1) arg1(3.141516) sr(CONST_SR) sa(CONST_SA)
BP.PowerOn
BP.Offset goal(CONST_VAR2)
BP.Offset goal(CONST_VAR2)
BP.PowerOff
BP.End
//Developed by eZ</pre>
<p>This time I want to use an additional feature from C/C++. The directive: #define</p>
<p>I use it to define a variable value in my Test Sequence file&#8230; but the application will parsed out the variable and its value and the code will substitute the variable name for its variable value&#8230;</p>
<p>So, If I will use then the directive #define&#8230; This time it is not recommended to use the Python convention for the comments&#8230; But the C/C++ conventions fits quite well..</p>
<p>Take a look the picture shown below.</p>
<p><a href="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_c-commenting-style1.png"><img class="aligncenter size-full wp-image-376" title="Comment parser_C++ commenting style" src="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_c-commenting-style1.png?w=510&#038;h=341" alt="" width="510" height="341" /></a></p>
<p>You may notice the output did not contain the variable name as the Input did&#8230; Now the Output(Right side) have the variable values instead&#8230; Also the comments did not appear at the right side&#8230; Now you could use then the data to feed a sequencer (Queued State Machine, etc) using the commands without ignoring the useful comments.</p>
<p>Feel free to write a comment (Python or C/C++ style&#8230; ) about this article</p>
<p>eZ</p>
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=361&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2011/05/23/building-a-comment-parser-inspired-on-python-cc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_python-commenting-style_2.png?w=1024" medium="image">
			<media:title type="html">Comment parser_Python commenting style_2</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_c-commenting-style2.png?w=1024" medium="image">
			<media:title type="html">Comment parser_C++ commenting style2</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2011/05/comment-parser_c-commenting-style1.png" medium="image">
			<media:title type="html">Comment parser_C++ commenting style</media:title>
		</media:content>
	</item>
		<item>
		<title>9no Congreso Internacional de Ingenieria Mecatrónica</title>
		<link>http://mylabviewtshare.wordpress.com/2011/01/27/9no-congreso-internacional-de-ingenieria-mecatronica/</link>
		<comments>http://mylabviewtshare.wordpress.com/2011/01/27/9no-congreso-internacional-de-ingenieria-mecatronica/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 05:32:24 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[Otros recursos]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=356</guid>
		<description><![CDATA[En marzo se celebrará el congreso internacional de mecatrónica: Automatización y tecnologia, organizado por el ITESM Campus Monterrey. Este congreso de Mecatrónica más grande de America Latina. &#160; &#160; Habrá conferencias, talleres, concursos , Eventos sociales, etc &#160; Aqui dejo la pagina oficial: http://www.congreso-mecatronica.com/ &#160; Has planes para que asistas a este magno evento que <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=356&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>En marzo se celebrará el congreso internacional de mecatrónica: Automatización y tecnologia, organizado por el ITESM Campus Monterrey.</p>
<p>Este congreso de Mecatrónica más grande de America Latina.</p>
<p>&nbsp;</p>
<p><a href="http://mylabviewtshare.files.wordpress.com/2011/01/automatizacic3b3n-y-tecnologia.png"><img class="aligncenter size-full wp-image-357" title="Automatización y Tecnologia" src="http://mylabviewtshare.files.wordpress.com/2011/01/automatizacic3b3n-y-tecnologia.png?w=484&#038;h=366" alt="" width="484" height="366" /></a></p>
<p>&nbsp;</p>
<p>Habrá conferencias, talleres, concursos , Eventos sociales, etc</p>
<p>&nbsp;</p>
<p>Aqui dejo la pagina oficial:</p>
<p><img src="/Users/eZ/AppData/Local/Temp/moz-screenshot-3.png" alt="" /></p>
<p><a title="9no Congreso Internacioal de Ingenieria Mecatrónica" href="http://www.congreso-mecatronica.com/" target="_blank">http://www.congreso-mecatronica.com/</a></p>
<p>&nbsp;</p>
<p>Has planes para que asistas a este magno evento que tiene mucho que ofrecer</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/acerca-de/otros-recursos/'>Otros recursos</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/356/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/356/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/356/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=356&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2011/01/27/9no-congreso-internacional-de-ingenieria-mecatronica/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2011/01/automatizacic3b3n-y-tecnologia.png" medium="image">
			<media:title type="html">Automatización y Tecnologia</media:title>
		</media:content>

		<media:content url="/Users/eZ/AppData/Local/Temp/moz-screenshot-3.png" medium="image" />
	</item>
		<item>
		<title>VI Nugget: Llamando código externo Parte 3::Transparencias</title>
		<link>http://mylabviewtshare.wordpress.com/2010/04/09/vi-nugget-llamando-codigo-externo-parte-3transparencias/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/04/09/vi-nugget-llamando-codigo-externo-parte-3transparencias/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 18:07:23 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=333</guid>
		<description><![CDATA[El ejemplo anterior nos mostró la flexibilidad que ofrece LabVIEW para llamar y ejecutar código externo&#8230; y los beneficios que se pueden obtener Ahora mostraremos un ultimo ejemplo: Establecer transparencia a una ventana&#8230; Ahora, no estoy del todo seguro desde que version de LabVIEW contiene la propiedad de transparecia (LabVIEW 8.2?) pero lo que si <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=333&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>El ejemplo anterior nos mostró la flexibilidad que ofrece LabVIEW para llamar y ejecutar código externo&#8230; y los beneficios que se pueden obtener</p>
<p>Ahora mostraremos un ultimo ejemplo: Establecer transparencia a una ventana&#8230;</p>
<p>Ahora, no estoy del todo seguro desde que version de LabVIEW contiene la propiedad de transparecia (LabVIEW 8.2?) pero lo que si es un hecho es que en la version LabVIEW 7.x no existe dicha propiedad&#8230;</p>
<p>Sin embargo, es posible hacer una ventana transparente utilizando el user32.dll (Aqui dejo una breve explicación&#8230; aunque el código fuente es para VB&#8230; tiene mucha similitud en la forma de llamar a la API de Windows)<a href="http://" target="_blank"> http://www.codeguru.com/vb/gen/vb_graphics/transparency/article.php/c6979</a></p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/04/codigo-fuente1.jpg" target="_blank"><img class="aligncenter size-large wp-image-337" title="Código Fuente" src="http://mylabviewtshare.files.wordpress.com/2010/04/codigo-fuente1.jpg?w=819&#038;h=426" alt="" width="819" height="426" /></a></p>
<p style="text-align:left;">Este código aún funciona en versiones de LabVIEW que tengan integrada la función de transparencia como parte de su libreria</p>
<p style="text-align:left;">
<p style="text-align:left;">Consideraciones:</p>
<p style="text-align:left;">1.-  bAlpha espera valores de 0 a 255 &#8230; como se puede observar, mediante una ecuación estos valores se pasan a representarse como un porcentaje (0% significa que la pantalla es completamente visibile, y 100% que es completamente invisible).Es por ello que hay que considerar el valor de la entrada : &#8220;Transparency(%)&#8221;. Este valor no debe aceptar valores negativos ni mayores a 100.</p>
<p style="text-align:left;">Esto es posible alcanzarlo creando un control adaptado que aceptes los rangos de valores definidos&#8230; y/0, definir dicha condición en la estructura &#8220;Formula node&#8221;</p>
<p style="text-align:left;">
<p style="text-align:left;">2.- Este SubVI debe de colocarse en el VI que queremos que tenga las propiedades traslucidas&#8230;. es decir, si se ejecuta este SubVI observaras que aunque pongas el valor del control &#8221; &#8220;Transparency(%)&#8221; al 100%  este SubVI no cambiara, puesto que solo surte efecto para el VI que lo manda llamar&#8230;</p>
<p style="text-align:left;">Como regla de oro: El VI que tu deses que sea transparente, colocale este SubVI y alimenta la entrada y obtendras las propiedades traslucidas de dicha ventana.</p>
<p style="text-align:left;">
<p style="text-align:left;">Aqui un ejemplo de como funciona:</p>
<p style="text-align:left;">
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/04/ventana-traslucida.jpg" target="_blank"><img class="aligncenter size-large wp-image-340" title="Ventana Traslucida" src="http://mylabviewtshare.files.wordpress.com/2010/04/ventana-traslucida.jpg?w=922&#038;h=594" alt="" width="922" height="594" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=333&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/04/09/vi-nugget-llamando-codigo-externo-parte-3transparencias/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/04/codigo-fuente1.jpg?w=1024" medium="image">
			<media:title type="html">Código Fuente</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/04/ventana-traslucida.jpg?w=1024" medium="image">
			<media:title type="html">Ventana Traslucida</media:title>
		</media:content>
	</item>
		<item>
		<title>VI nugget:Llamando código externo::Parte2</title>
		<link>http://mylabviewtshare.wordpress.com/2010/04/06/llamando-codigo-externoparte2/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/04/06/llamando-codigo-externoparte2/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 21:12:11 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=317</guid>
		<description><![CDATA[El ejemplo propuesto en la primer parte de esta serie sugiere el uso de un dialogo&#8230; sin embargo, LabVIEW contiene algunos nodos muy similares (One Button Dialog, Two button Dialog, Three Button Dialog). Lo más atractivo por ahora seria buscar ciertas utilidades con las que LabVIEW no venga equipado&#8230; Que tal: Un VI que detecte <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=317&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>El ejemplo propuesto en la primer parte de esta serie sugiere el uso de un dialogo&#8230; sin embargo, LabVIEW contiene algunos nodos muy similares (One Button Dialog, Two button Dialog, Three Button Dialog).</p>
<p>Lo más atractivo por ahora seria buscar ciertas utilidades con las que LabVIEW no venga equipado&#8230; Que tal: Un VI que detecte el estado del CAPS-LOCK?</p>
<p>Esta caracterisitica la has visto en muchas apliacaciones,  sobre todo en aquellas que te pide que ingreses un Password&#8230;</p>
<p>LabVIEW no cuenta con un nodo, funcion o método (considerando aún LabVIEW9.0), sin embargo esto puede ser alcanzado utilizando código externo&#8230; en este caso utilizaremos una vez mas el API de Windows: User32.dll</p>
<p>La funcion a invocar se llama: GetKeyState&#8230; aqui mayor información :<a href="http://" target="_blank"> http://msdn.microsoft.com/en-us/library/ms646301%28v=VS.85%29.aspx</a></p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/04/codigo-fuente.jpg" target="_blank"><img class="aligncenter size-full wp-image-323" title="Código fuente" src="http://mylabviewtshare.files.wordpress.com/2010/04/codigo-fuente.jpg?w=510&#038;h=174" alt="" width="510" height="174" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">A continuación se presenta un ejemplo muy sencillo incorporando el VI explicado anteriormente</p>
<p style="text-align:left;"><a href="http://mylabviewtshare.files.wordpress.com/2010/04/caps-lock-on-detector.jpg" target="_blank"><img class="aligncenter size-full wp-image-324" title="Caps lock on detector" src="http://mylabviewtshare.files.wordpress.com/2010/04/caps-lock-on-detector.jpg?w=510&#038;h=129" alt="" width="510" height="129" /></a></p>
<p style="text-align:left;">La leyenda: Caps Lock is ON&#8230;  aparecera solo cuando este esté activado, de otro modo no se desplegara dicho mensaje.</p>
<p style="text-align:left;">
<p style="text-align:left;">
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/317/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=317&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/04/06/llamando-codigo-externoparte2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/04/codigo-fuente.jpg" medium="image">
			<media:title type="html">Código fuente</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/04/caps-lock-on-detector.jpg" medium="image">
			<media:title type="html">Caps lock on detector</media:title>
		</media:content>
	</item>
		<item>
		<title>VI nugget:Llamando código externo::Parte I</title>
		<link>http://mylabviewtshare.wordpress.com/2010/03/30/llamando-codigo-externoparte-i/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/03/30/llamando-codigo-externoparte-i/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 17:31:17 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=303</guid>
		<description><![CDATA[Tal como los archivos ejecutables (.exe) los archivos .dll pueden contener código (hecho en algun lenguaje de programación) datos o algun otro recruso LabVIEW tiene la capacidad de llamar y ejecutar código externo (Dynamic link libraries o Shared libraries, generalmente bajo las extensiones: dll, drv, ocx) incrementando el poderio y robustez de la plataforma de <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=303&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tal como los archivos ejecutables (.exe) los archivos .dll pueden contener código (hecho en algun lenguaje de programación) datos o algun otro recruso</p>
<p>LabVIEW tiene la capacidad de llamar y ejecutar código externo (Dynamic  link libraries o Shared libraries, generalmente bajo las extensiones:  dll, drv, ocx) incrementando el poderio y robustez de la plataforma de programacion creada por National Instruments.</p>
<p>Vamos a describir un ejemplo básico utilizando una API de Windows (WinAPI) bastante conocida: user32.dll</p>
<p>Esta API contiene una funcion llamada: MessageBox (bastante intuitivo el nombre&#8230; no crees?) la cual despliega un cuadro de dialogo  &#8220;modal&#8221; el cual contiene el icono y apariencia del sistema, un set de botones.</p>
<p>A pesar de ser una aplicacion sencilla es muy util para desplegar información de &#8220;estatus&#8221; o de errores, una vez seleccionada la opción, el dll retorna un numero entero dependiendo el boton que el usuario haya presionado.</p>
<p>Para mayores informes, lea la MSDN de dicha función : <a href="http://msdn.microsoft.com/en-us/library/ms645505%28VS.85%29.aspx" target="_blank">http://msdn.microsoft.com/en-us/library/ms645505%28VS.85%29.aspx</a></p>
<p>El VI presentado como ejemplo, funciona de manera similar (aunque no igual) al nodo: One Dialog Button contenido en la libreria de LabVIEW,  este ejemplo no pretende sustituirlo, sino solo demostrar de una manera clara como se puede ejecutar coódigo externo.</p>
<div id="attachment_309" class="wp-caption aligncenter" style="width: 519px"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente.jpg" target="_blank"><img class="size-full wp-image-309 " title="Código fuente" src="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente.jpg?w=509&#038;h=341" alt="" width="509" height="341" /></a><p class="wp-caption-text">Código Fuente</p></div>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/message-type.jpg" target="_blank"><img class="aligncenter size-full wp-image-310" title="Message  type" src="http://mylabviewtshare.files.wordpress.com/2010/03/message-type.jpg?w=510&#038;h=501" alt="" width="510" height="501" /></a></p>
<p style="text-align:left;">Como puede observarse,  dependiendo de el tipo de mensaje seleccionado (Message Type) es el tipo de dialogo que aparece en pantalla y la opcion seleccionada retorna un entero (en este caso se hizo un indicador tipo enum para su mejor visualización)</p>
<p style="text-align:left;">
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/simple-ok.jpg" target="_blank"><img class="aligncenter size-full wp-image-311" title="Simple OK" src="http://mylabviewtshare.files.wordpress.com/2010/03/simple-ok.jpg?w=287&#038;h=155" alt="" width="287" height="155" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">Tal como lo indica la MSDN, el dialogo contiene la apariencia del sistema,  asi mismo ofrece la oportunidad de colocr titulo y mensaje al dialogo.</p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/ok_cancel-button.jpg" target="_blank"><img class="aligncenter size-full wp-image-312" title="OK_Cancel button" src="http://mylabviewtshare.files.wordpress.com/2010/03/ok_cancel-button.jpg?w=287&#038;h=155" alt="" width="287" height="155" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">Este ultimo dialogo correponde entonces a el tipo de mensaje llamado : OK/Cancel</p>
<p style="text-align:left;">
<p style="text-align:left;">Finalmente se presenta un dialogo mostrado a traves de Twitter</p>
<p style="text-align:left;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/twitter-dialog-example.jpg" target="_blank"><img class="aligncenter size-large wp-image-327" title="twitter dialog example" src="http://mylabviewtshare.files.wordpress.com/2010/03/twitter-dialog-example.jpg?w=614&#038;h=253" alt="" width="614" height="253" /></a></p>
<p style="text-align:left;">Y aqui uno lanzado desde nuestro VI</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/labview-dialog-example.jpg" target="_blank"><img class="aligncenter size-full wp-image-328" title="LabVIEW dialog example" src="http://mylabviewtshare.files.wordpress.com/2010/03/labview-dialog-example.jpg?w=510&#038;h=401" alt="" width="510" height="401" /></a></p>
<p style="text-align:left;">Saludos, espero sus comentarios</p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/303/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/303/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/303/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=303&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/03/30/llamando-codigo-externoparte-i/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente.jpg" medium="image">
			<media:title type="html">Código fuente</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/message-type.jpg" medium="image">
			<media:title type="html">Message  type</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/simple-ok.jpg" medium="image">
			<media:title type="html">Simple OK</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/ok_cancel-button.jpg" medium="image">
			<media:title type="html">OK_Cancel button</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/twitter-dialog-example.jpg?w=1024" medium="image">
			<media:title type="html">twitter dialog example</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/labview-dialog-example.jpg" medium="image">
			<media:title type="html">LabVIEW dialog example</media:title>
		</media:content>
	</item>
		<item>
		<title>VI nugget: Obtener valores de un cursor en Gráfica XY</title>
		<link>http://mylabviewtshare.wordpress.com/2010/03/09/vi-nugget-obtener-valores-de-un-cursor-en-grafica-xy/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/03/09/vi-nugget-obtener-valores-de-un-cursor-en-grafica-xy/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 19:14:30 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=292</guid>
		<description><![CDATA[Es posible obtener los valores de los cursores de una gráfica XY A continuación se presenta una propuesta para hacerlo Notese en este caso en particular se tienen 2 cursores&#8230; pero pueden ser más Ahora se presenta el código fuente: . . Y finalmente se presenta el código fuente del SubVI: Ahora&#8230; como habran notado, <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=292&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Es posible obtener los valores de los cursores de una gráfica XY</p>
<p>A continuación se presenta una propuesta para hacerlo</p>
<div id="attachment_294" class="wp-caption aligncenter" style="width: 520px"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/obtener-los-valores-del-cursor.jpg" target="_blank"><img class="size-full wp-image-294" title="Obtener los valores del cursor" src="http://mylabviewtshare.files.wordpress.com/2010/03/obtener-los-valores-del-cursor.jpg?w=510&#038;h=374" alt="" width="510" height="374" /></a><p class="wp-caption-text">Asi luce la interface de usuario</p></div>
<p style="text-align:left;">Notese en este caso en particular se tienen 2 cursores&#8230; pero pueden ser más</p>
<p style="text-align:left;">Ahora se presenta el código fuente:</p>
<p style="text-align:left;">
<div id="attachment_297" class="wp-caption aligncenter" style="width: 583px"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente_top-leve-vi_evento-xy-graph.jpg" target="_blank"><img class="size-large wp-image-297" title="Código fuente_top leve VI_evento XY Graph" src="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente_top-leve-vi_evento-xy-graph.jpg?w=573&#038;h=229" alt="" width="573" height="229" /></a><p class="wp-caption-text">Evento XY Graph:Mouse Up</p></div>
<p style="text-align:left;">.</p>
<p style="text-align:left;">.</p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<div id="attachment_295" class="wp-caption aligncenter" style="width: 584px"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente_top-leve-vi.jpg" target="_blank"><img class="size-large wp-image-295" title="Código fuente_top level VI" src="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente_top-leve-vi.jpg?w=574&#038;h=243" alt="" width="574" height="243" /></a><p class="wp-caption-text">Código fuente del VI principal---Evento Stop:Value Change</p></div>
<p>Y finalmente se presenta el código fuente del SubVI:</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente-completo.jpg" target="_blank"><img class="aligncenter size-large wp-image-298" title="Código fuente completo" src="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente-completo.jpg?w=1024&#038;h=583" alt="" width="1024" height="583" /></a></p>
<p style="text-align:left;">
<p style="text-align:left;">Ahora&#8230; como habran notado, la salida (cluster) llamada Cursor <em>&#8220;x&#8221;</em> (donde x es el numero de cursor al que corresponde) ademas de las posiciones X-Y contiene un indice&#8230;</p>
<p style="text-align:left;">Supongamos que no existiera la manera de obtener (por medio de propiedades) la posicion X-Y&#8230;. bueno, con el indice seria posible obtenerlos, solo utilicen el indice en los arreglos de 1D originados en la salida del for loop (X &#8211; Y) y esos serian los datos correspondientes</p>
<p style="text-align:left;">No lo hice asi, puesto que ya existen dichas propiedades</p>
<p style="text-align:left;">
<p style="text-align:left;">Comentarios Bienvenidos!!</p>
<p style="text-align:left;">
<p style="text-align:left;">Saludos!</p>
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=292&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/03/09/vi-nugget-obtener-valores-de-un-cursor-en-grafica-xy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/obtener-los-valores-del-cursor.jpg" medium="image">
			<media:title type="html">Obtener los valores del cursor</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente_top-leve-vi_evento-xy-graph.jpg?w=1023" medium="image">
			<media:title type="html">Código fuente_top leve VI_evento XY Graph</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente_top-leve-vi.jpg?w=1024" medium="image">
			<media:title type="html">Código fuente_top level VI</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/codigo-fuente-completo.jpg?w=1024" medium="image">
			<media:title type="html">Código fuente completo</media:title>
		</media:content>
	</item>
		<item>
		<title>VI Nugget: Sombrero Mexicano edición Bicentenario&#8230; utilizando MathScript</title>
		<link>http://mylabviewtshare.wordpress.com/2010/03/05/mexican-hat-utilizando-mathscript/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/03/05/mexican-hat-utilizando-mathscript/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 03:50:02 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=280</guid>
		<description><![CDATA[Aqui solo un ejemplo como puedes hacer un sombrero Mexicano&#8230; edición Bicentenario y esto  utilizando solamente un nodo (estructura MathScript) Esto nos da una idea de la potente capacidad de dicha estructura La próxima vez que necesites hacer operaciones aritméticas&#8230; intenta con MathScript en lugar de utilizar muchos nodos P.D La sintaxis de MathScript  (lo <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=280&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Aqui solo un ejemplo como puedes hacer un sombrero Mexicano&#8230; edición Bicentenario y esto  utilizando solamente un nodo (estructura MathScript)</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/03/mexican-hat_bicentenario.jpg" target="_blank"><img class="aligncenter size-large wp-image-281" title="Mexican Hat_bicentenario" src="http://mylabviewtshare.files.wordpress.com/2010/03/mexican-hat_bicentenario.jpg?w=1024&#038;h=515" alt="" width="1024" height="515" /></a></p>
<p>Esto nos da una idea de la potente capacidad de dicha estructura</p>
<p>La próxima vez que necesites hacer operaciones aritméticas&#8230; intenta con MathScript en lugar de utilizar muchos nodos</p>
<p>P.D</p>
<p>La sintaxis de MathScript  (lo que está escrito dentro de la estructura)  es compatible con Matlab</p>
<p>Saludos!</p>
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=280&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/03/05/mexican-hat-utilizando-mathscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/03/mexican-hat_bicentenario.jpg?w=1024" medium="image">
			<media:title type="html">Mexican Hat_bicentenario</media:title>
		</media:content>
	</item>
		<item>
		<title>VI Nugget: Interfaces para mensajes de usuario</title>
		<link>http://mylabviewtshare.wordpress.com/2010/02/19/interfaces-para-mensajes-de-usuario/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/02/19/interfaces-para-mensajes-de-usuario/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 17:29:24 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=230</guid>
		<description><![CDATA[El rol del usuario en las aplicaciones es muy importante&#8230; y aunque muchos procesos son automatizados,  algunas aplicaciones requieren de la intervención del usuario o bien, el usuario requiere intervenir en la aplicación. Es todo un reto desarrollar aplicaciones que sean: Facil de uilizar, robustos,  faciles de leer, faciles de mantener, confiables, etc&#8230; y este <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=230&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>El rol del usuario en las aplicaciones es muy importante&#8230; y aunque muchos procesos son automatizados,  algunas aplicaciones requieren de la intervención del usuario o bien, el usuario requiere intervenir en la aplicación.</p>
<p>Es todo un reto desarrollar aplicaciones que sean: Facil de uilizar, robustos,  faciles de leer, faciles de mantener, confiables, etc&#8230; y este aumenta a medida que los objetivos y tamaño de la aplicación crece.</p>
<p>Existen libros que encaran estos y otros requisitos importantes de una manera muy completa, uno de ellos es: &#8220;The LabVIEW style book&#8221; escrito por Peter A.  Blume&#8230; aqui la liga por si te interesa, la verdad vale la pena la inversión: <a title="Bloomy Controls - the LabVIEW Style Book" href="http://www.bloomy.com/lvstyle/" target="_blank">http://www.bloomy.com/lvstyle/</a></p>
<p>Retomando el tema,  uno de los tantos aspectos de que la aplicacion debe de contener Interfaces de usuario amigables&#8230; una de ellas es la de desplegar los mensajes para el usuario.</p>
<p>La manera mas simple de hacerlo, la cual en ocasiones cumple con los requerimientos, es utilizando los nodos:</p>
<p>One Button Dialog, Two Button Dialog o Three Button Dialog.</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/pop-up-message-w-one-button1.jpg" target="_blank"><img class="aligncenter size-full wp-image-264" title="Pop up message w one button" src="http://mylabviewtshare.files.wordpress.com/2010/02/pop-up-message-w-one-button1.jpg?w=510&#038;h=444" alt="" width="510" height="444" /></a></p>
<p>Algunos expertos en la materia sugieren el uso de estos mensajes de usuario cuando se trata de aplicaciones de escritorio&#8230; es decir no en el uso de la industria, o aplicaciones criticas&#8230;  dado el tamano del cuadro del  mensaje, tamaño de letra,  tipo de letra,  color, etc&#8230;</p>
<p>Para cubir entonces esos requerimientos, es posible hacer tus propias interfaces para desplagar los mensajes.</p>
<ul>
<li>Ejemplo 1.-  Interface para mensajes de usuario básico:</li>
</ul>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/basic-user-message.jpg" target="_blank"><img class="aligncenter size-full wp-image-247" title="Basic User Message" src="http://mylabviewtshare.files.wordpress.com/2010/02/basic-user-message.jpg?w=510&#038;h=271" alt="" width="510" height="271" /></a></p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/codigo-fuente_basic-user-message.jpg" target="_blank"><img class="aligncenter size-full wp-image-248" title="Código fuente_Basic User Message" src="http://mylabviewtshare.files.wordpress.com/2010/02/codigo-fuente_basic-user-message.jpg?w=510&#038;h=222" alt="" width="510" height="222" /></a></p>
<p style="text-align:left;">Aunque esta es una interface de usuario básica, cumple con los requisitos necesarios&#8230; pero al igual que el mensaje tipo &#8220;pop-up&#8221; que viene integrada como parte de la libreria de LabVIEW (One button dialog), esta interface no permite modificar el tamaño de letra, u otras propiedades del texto. La interface no ofrece la oportunidad de adaptar el texto del boton &#8220;Ok&#8221; (obviamente el desarrollador lo puede incluir agregandolo al código, a lo que me refiero es que como libreria no la tiene) .</p>
<p style="text-align:left;">
<ul>
<li>Ejemplo 2.- Inteface de usuario</li>
</ul>
<p>Ahora,  que ya tienes tu interface de usuario para mensajes&#8230; en algunas ocasiones necesitas enfatizar parte del texto&#8230; por ejemplo el uso de &#8220;negritas&#8221;, de &#8220;italicas&#8221; o el uso de  colores en el texto, tamaño de letra, tipo de letra,  etc.</p>
<p style="text-align:left;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-con-1-boton.jpg" target="_blank"><img class="aligncenter size-full wp-image-253" title="Mensaje adaptable con 1 boton" src="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-con-1-boton.jpg?w=577&#038;h=457" alt="" width="577" height="457" /></a></p>
<p style="text-align:left;">Aqui se resuelve el problema de agregarle el texto de tu preferencia al boton (tal como lo puedes hacer con el One button Dialog).</p>
<p style="text-align:left;">Esta interface tambien permite que modifiques algunas propiedades del texto, tales como: Italicas, Negritas, Tipografia, Tamaño de letra, color de texto, subrayado, tachado.</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable_boldunderline.jpg" target="_blank"><img class="aligncenter size-full wp-image-254" title="Mensaje adaptable_Bold+underline" src="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable_boldunderline.jpg?w=584&#038;h=398" alt="" width="584" height="398" /></a></p>
<p style="text-align:left;">
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-codigo-fuente.jpg" target="_blank"><img class="aligncenter size-large wp-image-255" title="Mensaje adaptable + código fuente" src="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-codigo-fuente.jpg?w=1024&#038;h=549" alt="" width="1024" height="549" /></a></p>
<p style="text-align:left;">Entre otras cosas, el código ofrece adaptar el tamaño y centrar el boton cuando el texto de este crece mas alla del especificado.</p>
<p style="text-align:left;">Ahora bien, es algunas ocasiones necesitamos enfatizar palabras claves de nuestro texto&#8230; en el ejemplo anterior podemos observar que al seleccionar alguna propiedad tal como: &#8220;<strong>negritas</strong>&#8220;  estas pasaran a todo el texto. lo mismo aplica para color, tamaño de letra, tipografia, etc&#8230; asi que con esa interface no es posible delimitar que parte del texto necesitamos con tal o cual propiedad.</p>
<ul>
<li>Ejemplo 3.- Interface de usuario basado en html (marcas de hipertexto)</li>
</ul>
<p>Para poder lograr que solo la parte deseada del texto tenga alguna propiedad ofrece complejidad&#8230; es decir, va mucho mas alla que solo activar alguna propiedad o metodo incluida en LabVIEW&#8230; se tiene que hacer algun tipo de &#8220;parser&#8221; tal como lo hacen los exploradores (Firefox, Safari, Opera, Explorer, etc)&#8230; y para ello entonces nos podemos basar en las marcas de hipertexto&#8230;</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-basado-en-marcas-de-hipertexto1.jpg" target="_blank"><img class="aligncenter size-full wp-image-274" title="Mensaje adaptable basado en marcas de hipertexto" src="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-basado-en-marcas-de-hipertexto1.jpg?w=532&#038;h=466" alt="" width="532" height="466" /></a></p>
<p style="text-align:left;">Estoy de acuerdo que las etiquetas &lt;color&gt;, &lt;/color&gt;, &lt;font&gt;,&lt;/font&gt; y &lt;size&gt;,&lt;/size&gt; no forman (al menos no de esa manera) parte de HTML, por eso mencione que esta basado en&#8230; la verdad no busco tanto que sean &#8220;compatibles&#8221;, sino que de alguna forma sean frases cortas e intuitivas&#8230;</p>
<p style="text-align:left;">
<p>En estos ejemplos el texto del usuario es muy similar&#8230; pero con distinto impacto visual hacia el usuario</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/02/bienvenido-a-vive-labview1.jpg" target="_blank"><img class="aligncenter size-full wp-image-278" title="Bienvenido a VIve LabVIEW" src="http://mylabviewtshare.files.wordpress.com/2010/02/bienvenido-a-vive-labview1.jpg?w=510&#038;h=432" alt="" width="510" height="432" /></a></p>
<p>Saludos!</p>
<p style="text-align:left;">
<p style="text-align:left;">
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=230&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/02/19/interfaces-para-mensajes-de-usuario/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/pop-up-message-w-one-button1.jpg" medium="image">
			<media:title type="html">Pop up message w one button</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/basic-user-message.jpg" medium="image">
			<media:title type="html">Basic User Message</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/codigo-fuente_basic-user-message.jpg" medium="image">
			<media:title type="html">Código fuente_Basic User Message</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-con-1-boton.jpg" medium="image">
			<media:title type="html">Mensaje adaptable con 1 boton</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable_boldunderline.jpg" medium="image">
			<media:title type="html">Mensaje adaptable_Bold+underline</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-codigo-fuente.jpg?w=1024" medium="image">
			<media:title type="html">Mensaje adaptable + código fuente</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/mensaje-adaptable-basado-en-marcas-de-hipertexto1.jpg" medium="image">
			<media:title type="html">Mensaje adaptable basado en marcas de hipertexto</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/02/bienvenido-a-vive-labview1.jpg" medium="image">
			<media:title type="html">Bienvenido a VIve LabVIEW</media:title>
		</media:content>
	</item>
		<item>
		<title>VI Nugget &#8212;Menu de usuario adaptable</title>
		<link>http://mylabviewtshare.wordpress.com/2010/01/28/vi-nugget-menu-de-usuario-adaptable/</link>
		<comments>http://mylabviewtshare.wordpress.com/2010/01/28/vi-nugget-menu-de-usuario-adaptable/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 05:17:14 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VI Nugget]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=175</guid>
		<description><![CDATA[Esta pequeña subrutina esta diseñada para ser utilizada como menú de usuario. Soporta hasta 4 opciones. Entre otras cosas ofrece bastante flexibilidad porque algunas características tales como el nombre de cada boton, color de boton (estado verdadero y falso), color del fondo de menú, y el texto que aparece cuando colocas el puntero sobre cada <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=175&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Esta pequeña subrutina esta diseñada para ser utilizada como menú de usuario.</p>
<p>Soporta hasta 4 opciones.</p>
<p>Entre otras cosas ofrece bastante flexibilidad porque algunas características tales como el nombre de cada boton, color de boton (estado verdadero y falso), color del fondo de menú, y el texto que aparece cuando colocas el puntero sobre cada opción (boton).</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/01/menu.jpg" target="_blank"><img class="aligncenter size-large wp-image-178" title="Menu" src="http://mylabviewtshare.files.wordpress.com/2010/01/menu.jpg?w=1024&#038;h=510" alt="" width="1024" height="510" /></a></p>
<p>Algunas características adicionales, es que si solo necesitas por ejemplo 3 botons, basta dejar uno de los campos del nombre del boton vacio y aparecera la leyenda: &#8220;Not used&#8221; y quedara deshabilitado el boton&#8230; asi mismo la leyenda definida quedara deshabilitada pues el boton esta deshabilitado</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/01/deshabilitado1.jpg"><img class="aligncenter size-full wp-image-226" title="deshabilitado" src="http://mylabviewtshare.files.wordpress.com/2010/01/deshabilitado1.jpg?w=827&#038;h=527" alt="" width="827" height="527" /></a></p>
<p>Finalmente cuando se presione un boton, la suubrutina (SubVI) dara como salida el nombre del boton presionado (por si se utiliza una estructura case para strings)&#8230; y tambien regresa el numero del boton presionado</p>
<p>Porque?</p>
<p>1.-La salida del nombre del boton presionado es bueno&#8230; sin embargo utilizarlo en una estructura case basado en strings es una arma de dos filos, ya que estructuras basadas en strings son sensibles a mayusculas/minusculas, espacios, tabs, etc&#8230;</p>
<p>Es por ello que se decidio agregar cual fue el boton presionado&#8230; de este modo se elimina el problema que ofrecen las estructuras case basados en texto</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/01/opcion-seleccionada1.jpg" target="_blank"><img class="aligncenter size-full wp-image-185" title="Opcion seleccionada" src="http://mylabviewtshare.files.wordpress.com/2010/01/opcion-seleccionada1.jpg?w=600&#038;h=316" alt="" width="600" height="316" /></a></p>
<p>Notese que el boton presionado fue el #3, nombrado como: &#8220;Presentar&#8221;</p>
<p style="text-align:center;"><a href="http://mylabviewtshare.files.wordpress.com/2010/01/codigo-fuente.jpg" target="_blank"><img class="aligncenter size-large wp-image-188" title="Diagrama" src="http://mylabviewtshare.files.wordpress.com/2010/01/codigo-fuente.jpg?w=1023&#038;h=541" alt="" width="1023" height="541" /></a></p>
<p>Saludos!</p>
<br />Filed under: <a href='http://mylabviewtshare.wordpress.com/category/vive-labview/vi-nugget/'>VI Nugget</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=175&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2010/01/28/vi-nugget-menu-de-usuario-adaptable/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/01/menu.jpg?w=1024" medium="image">
			<media:title type="html">Menu</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/01/deshabilitado1.jpg" medium="image">
			<media:title type="html">deshabilitado</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/01/opcion-seleccionada1.jpg" medium="image">
			<media:title type="html">Opcion seleccionada</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2010/01/codigo-fuente.jpg?w=1023" medium="image">
			<media:title type="html">Diagrama</media:title>
		</media:content>
	</item>
		<item>
		<title>Pequeño clasificador de esferas desarrollado con NXT-G</title>
		<link>http://mylabviewtshare.wordpress.com/2009/11/23/pequeno-clasificador-de-esferas-desarrollado-con-nxt-g/</link>
		<comments>http://mylabviewtshare.wordpress.com/2009/11/23/pequeno-clasificador-de-esferas-desarrollado-con-nxt-g/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 05:46:28 +0000</pubDate>
		<dc:creator>eZ</dc:creator>
				<category><![CDATA[VIve NXT]]></category>
		<category><![CDATA[NXT-G]]></category>

		<guid isPermaLink="false">http://mylabviewtshare.wordpress.com/?p=162</guid>
		<description><![CDATA[Aunque este diseño de pequeña maquina no es mio (viene propuesto como ejercicio en el NXT2.0), aun con todo es bastante satisfactorio poder armarlo y aprender de ellos. Cabe mencionar asimismo que el robot aun no esta terminado&#8230; aun asi es bastante practico mostrarlo para dar una idea del funcionamiento. Basicamente reconoce el color de <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=162&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Aunque este diseño de pequeña maquina no es mio (viene propuesto como ejercicio en el NXT2.0), aun con todo es bastante satisfactorio poder armarlo y aprender de ellos.</p>
<p>Cabe mencionar asimismo que el robot aun no esta terminado&#8230; aun asi es bastante practico mostrarlo para dar una idea del funcionamiento.</p>
<p>Basicamente reconoce el color de cada esfera y la llama por su nombre (en Inglés)&#8230; el mecanismo completo bien podra no tan solo llamarla por su color, sino tambien clasificarlas segun su color.</p>
<p>El SW fué desarrollado utilizando la plataforma NXT-G.</p>
<div id="attachment_163" class="wp-caption aligncenter" style="width: 510px"><a href="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11035.jpg" target="_blank"><img class="size-full wp-image-163" title="NXT clafisicador de esferas" src="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11035.jpg?w=500&#038;h=300" alt="" width="500" height="300" /></a><p class="wp-caption-text">Vista superior</p></div>
<div id="attachment_164" class="wp-caption aligncenter" style="width: 510px"><a href="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11034.jpg" target="_blank"><img class="size-full wp-image-164" title="Robot y SW" src="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11034.jpg?w=500&#038;h=300" alt="" width="500" height="300" /></a><p class="wp-caption-text">Vista lateral</p></div>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 510px"><a href="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11044.jpg" target="_blank"><img class="size-full wp-image-173" title="NXT2.0 on VIve LabVIEW" src="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11044.jpg?w=500&#038;h=300" alt="NXT2.0 on VIve LabVIEW" width="500" height="300" /></a><p class="wp-caption-text">NXT2.0 on VIve LabVIEW</p></div>
<p>saludos!</p>
<br />Posted in VIve NXT  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mylabviewtshare.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mylabviewtshare.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mylabviewtshare.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mylabviewtshare.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mylabviewtshare.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mylabviewtshare.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mylabviewtshare.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mylabviewtshare.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mylabviewtshare.wordpress.com&amp;blog=9743038&amp;post=162&amp;subd=mylabviewtshare&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mylabviewtshare.wordpress.com/2009/11/23/pequeno-clasificador-de-esferas-desarrollado-con-nxt-g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ce6d5e17aa4d50d52d1e920bce74604?s=96&#38;d=wavatar&#38;r=PG" medium="image">
			<media:title type="html">eZ</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11035.jpg" medium="image">
			<media:title type="html">NXT clafisicador de esferas</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11034.jpg" medium="image">
			<media:title type="html">Robot y SW</media:title>
		</media:content>

		<media:content url="http://mylabviewtshare.files.wordpress.com/2009/11/sdc11044.jpg" medium="image">
			<media:title type="html">NXT2.0 on VIve LabVIEW</media:title>
		</media:content>
	</item>
	</channel>
</rss>
