<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Servo motores y mas sensores!! by Yolanda Rodriguez</title>
      <link>https://padlet.com/rosyyolster/c205yq1tw6ek</link>
      <description>Mas Sensores de Arduino!!!
</description>
      <language>en-us</language>
      <pubDate>2020-02-20 14:09:00 UTC</pubDate>
      <lastBuildDate>2023-03-07 08:07:40 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://i.ytimg.com/vi/g83Z-Ymjf7w/hqdefault.jpg</url>
      </image>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448025984</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/92c6c4db83abb97319cc2c52282da0da/Tema_V__Sensores.docx" />
         <pubDate>2020-02-20 14:18:07 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448025984</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448027163</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=FFv9ibnuWqY" />
         <pubDate>2020-02-20 14:19:36 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448027163</guid>
      </item>
      <item>
         <title>Servo motor varia la posición</title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448127964</link>
         <description><![CDATA[<div>void setup() {<br>   myservo.attach(9);  // vincula el servo al pin digital 9<br>}<br> <br>void loop() {<br>   //varia la posición de 0 a 180, con esperas de 15ms<br>   for (pos = 0; pos &lt;= 180; pos += 1) <br>   {<br>      myservo.write(pos);              <br>      delay(15);                       <br>   }<br> <br>   //varia la posición de 0 a 180, con esperas de 15ms<br>   for (pos = 180; pos &gt;= 0; pos -= 1) <br>   {<br>      myservo.write(pos);              <br>      delay(15);                       <br>   }<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-02-20 16:23:10 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448127964</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448131415</link>
         <description><![CDATA[<div>Conectar Servo va al pin 9 digital</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/3afb7753b61365c5a2c6d68a007a71c4/servo.png" />
         <pubDate>2020-02-20 16:28:12 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448131415</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448137238</link>
         <description><![CDATA[<div>Como Agregar la Libreria para el Servo Motor? y ejemplo</div>]]></description>
         <enclosure url="https://programarfacil.com/tutoriales/fragmentos/servomotor-con-arduino/" />
         <pubDate>2020-02-20 16:36:15 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/448137238</guid>
      </item>
      <item>
         <title>Carro seguidor de Linea del video de abajo (todo el proyecto)</title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/449054243</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://drive.google.com/file/d/1UXPJX16PekSi-krpa-9cAttpXYACdDPZ/view?usp=sharing" />
         <pubDate>2020-02-22 23:53:35 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/449054243</guid>
      </item>
      <item>
         <title>Comunicación de Python con Arduino a un Led</title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/450939228</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=13Hcmu6-Bqw&amp;t=286s" />
         <pubDate>2020-02-26 18:22:36 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/450939228</guid>
      </item>
      <item>
         <title>Ocupar la librería pyserial para comunicar python y Arduino:</title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/450940386</link>
         <description><![CDATA[<pre><strong>import </strong>serial
ser=serial.Serial(<strong>'com3'</strong>,9600)
<strong>while </strong>1:
    val=raw_input(<strong>"Introduzca 1 para encender y 0 para apagar LED "</strong>)
    ser.write(val)</pre><div><strong>Programa de Python arriba:</strong><br><br><strong>Programa para Arduino abajo:</strong><br>void setup() {<br>  // put your setup code here, to run once:<br> Serial.begin(9600);<br> pinMode(13,OUTPUT);<br>}<br>void loop() {<br>  // put your main code here, to run repeatedly:<br>   if (Serial.available()){<br>    switch(Serial.read()){<br>      case '0': digitalWrite(13,LOW);<br>              break;<br>      case '1': digitalWrite(13,HIGH);<br>              break;   <br>      default: break;           <br>          <br>          }<br><br>     }<br>}<br><br><strong>ver video abajo con explicación muy clara!!!</strong></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-02-26 18:24:03 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/450940386</guid>
      </item>
      <item>
         <title>Mover ServoMotor de Arduino con interfaz en Python y led</title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451021131</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.youtube.com/watch?v=XcXvnBp1R7M" />
         <pubDate>2020-02-26 20:08:26 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451021131</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451023913</link>
         <description><![CDATA[<div>Conectando el Servo Motor y Led</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/ded7b94b26f54e241528bda8b8e0a0e8/arduino_y_servo_y_led.png" />
         <pubDate>2020-02-26 20:12:51 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451023913</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451044178</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/5cbe804ec41c2cd412346823e722c0e5/libreria_pyfirmata_instalacion.png" />
         <pubDate>2020-02-26 20:48:54 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451044178</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451044695</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/14e978087712f956b457522241974dd7/prog1_parte_1_servo.png" />
         <pubDate>2020-02-26 20:49:56 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451044695</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451044876</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/b20fc67c8784003c2cbc3367d29cc846/progr1_parte_2_servo.png" />
         <pubDate>2020-02-26 20:50:18 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451044876</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451045045</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/4eb49544b83f347d1a4fbb591607a4fa/prog1_parte_3.png" />
         <pubDate>2020-02-26 20:50:38 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451045045</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451045198</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/7d012c56e7b69a46ed6da2c0f5cb7405/prog1_parte4_servo.png" />
         <pubDate>2020-02-26 20:50:55 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451045198</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451046600</link>
         <description><![CDATA[<div>sacar Ejemplo para la placa Arduino</div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/650b215db1a17529940ad179d561bf40/firmata_en_arduino_ejemplo.png" />
         <pubDate>2020-02-26 20:53:31 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451046600</guid>
      </item>
      <item>
         <title></title>
         <author>rosyyolster</author>
         <link>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451047033</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/448510800/49546d13f2709b8814e6c06cef4d5b04/standardfirmata.png" />
         <pubDate>2020-02-26 20:54:16 UTC</pubDate>
         <guid>https://padlet.com/rosyyolster/c205yq1tw6ek/wish/451047033</guid>
      </item>
   </channel>
</rss>
