<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Estructura de repetición y control de arduino. by Cristina Wenzhang</title>
      <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2021-11-19 12:41:32 UTC</pubDate>
      <lastBuildDate>2021-11-19 13:21:37 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f603.png</url>
      </image>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901993647</link>
         <description><![CDATA[<div>for: Podrás repetir las secuencias de los códigos que se encuentren entre llaves las veces que indiques en el IDE de Arduino. Para ello, se analizará que se cumplan las condiciones para que se vuelvan a ejecutar esta serie de estructuras de control.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 12:59:24 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901993647</guid>
      </item>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901994558</link>
         <description><![CDATA[<div>while: Un bucle del tipo while es un bucle de ejecución continua mientras se cumpla la expresión colocada entre paréntesis en la cabecera del bucle. La variable de prueba tendrá que cambiar para salir del bucle. La situación podrá cambiar a expensas de una expresión dentro el código del bucle o también por el cambio de un valor en una entrada de un sensor.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 12:59:53 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901994558</guid>
      </item>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901995288</link>
         <description><![CDATA[<div>do..while: El bucle do while funciona de la misma manera que el bucle while, con la salvedad de que la condición se prueba al final del bucle, por lo que el bucle siempre se ejecutará al menos una vez.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:00:14 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901995288</guid>
      </item>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901995742</link>
         <description><![CDATA[<div>goto: transfiere el flujo de programa a un punto del programa que está etiquetado.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:00:32 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901995742</guid>
      </item>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901996078</link>
         <description><![CDATA[<div>break: se usa en las instrucciones do, for, while para salir del bucle de una forma diferente a la indicada en el bucle.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:00:43 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901996078</guid>
      </item>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901996449</link>
         <description><![CDATA[<div>continue: se usa en las instrucciones do, for, while para saltar el resto de las instrucciones que están entre llaves y se vaya a la siguiente ejecución del bucle comprobando la expresión condicional.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:00:57 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1901996449</guid>
      </item>
      <item>
         <title></title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902001214</link>
         <description><![CDATA[<div>Las estructuras de control en el entorno de programación de Arduino son herramientas que se utilizan para elegir una secuencia o un camino alternativo dentro de la estructura del software. Esto quiere decir que, son instrucciones que permiten romper la secuencia metódica de los códigos, ya que existe una expresión lógica con la cual se debe decidir si se elige una ruta u otra para que ambas puedan llegar más adelante al mismo final del proceso.</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:04:02 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902001214</guid>
      </item>
      <item>
         <title>For </title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902021716</link>
         <description><![CDATA[<div>for (initialization; condition; increment) { // statement(s); }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:15:21 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902021716</guid>
      </item>
      <item>
         <title>While </title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902022446</link>
         <description><![CDATA[<div>while (condition) { // la condición debe ser TRUE o FALSE // statement(s) }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:15:44 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902022446</guid>
      </item>
      <item>
         <title>Do.. while</title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902023702</link>
         <description><![CDATA[<div>do { // statement block } while (condition);</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:16:23 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902023702</guid>
      </item>
      <item>
         <title>Do..while</title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902026191</link>
         <description><![CDATA[<div>int x = 0; do { delay(50); // para esperar que se estabilice el sensor x = readSensors(); // lectura de los sensores } while (x &lt; 100);</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:17:35 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902026191</guid>
      </item>
      <item>
         <title>Goto.</title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902027600</link>
         <description><![CDATA[<div>for (byte r = 0; r &lt; 255; r++) { for (byte g = 255; g &gt; 0; g--) { for (byte b = 0; b &lt; 255; b++) { if (analogRead(0) &gt; 250) { goto bailout; } // más declaraciones de códigos del programa } } } bailout: // más declaraciones</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:18:20 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902027600</guid>
      </item>
      <item>
         <title>Break</title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902029475</link>
         <description><![CDATA[<div>int threshold = 40; for (int x = 0; x &lt; 255; x++) { analogWrite(PWMpin, x); sens = analogRead(sensorPin); if (sens &gt; threshold) { // rescatar en la detección del sensor x = 0; break; } delay(50); }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:19:19 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902029475</guid>
      </item>
      <item>
         <title>Continue</title>
         <author>wenzhangcristina</author>
         <link>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902030730</link>
         <description><![CDATA[<div>for (int x = 0; x &lt;= 255; x ++) { if (x &gt; 40 &amp;&amp; x &lt; 120) { // crear salto en los valores continue; } analogWrite(PWMpin, x); delay(50); }</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-11-19 13:19:58 UTC</pubDate>
         <guid>https://padlet.com/wenzhangcristina/6kzri74cu038faeg/wish/1902030730</guid>
      </item>
   </channel>
</rss>
