{"id":356,"date":"2010-12-02T00:32:53","date_gmt":"2010-12-01T22:32:53","guid":{"rendered":"http:\/\/pinguino.walii.es\/?p=356"},"modified":"2010-12-03T19:08:23","modified_gmt":"2010-12-03T17:08:23","slug":"burbujometro-con-pinguino","status":"publish","type":"post","link":"https:\/\/pinguino.walii.es\/?p=356","title":{"rendered":"Burbujometro con PINGUINO"},"content":{"rendered":"

\n

Hola… buenas, hoy con una tonter\u00eda que se me ocurri\u00f3 hace tiempo y nunca tuve el tiempo para hacerlo, hoy dedique un ratillo a ello, aunque hecho con prisas y con poca paciencia. Pero funciona…<\/p>\n

<\/embed><\/object>
\nQuizas mi mezcla no sea la ideal, por eso las burbujas no salen como deber\u00eda.<\/p>\n

El programa es basico, controlando el servo y deteniendo un segundo arriba para poder soplar y medio segundo abajo para poder humectar bien el aro.<\/p>\n

\"\"<\/a>Tambi\u00e9n el ventilador se controla con una salida PWM y controlando esta con dos botones… para subir y bajar la velocidad, ya que las burbujas necesitan un viento de velocidad \u00abX\u00bb para hacerse, si es muy d\u00e9bil el viento, no se hace la burbuja y si este es muy fuerte la rompe.<\/p>\n

El control del ventilador es un transistor BC337 corto circuitando la tierra del cooler.<\/p>\n

\"\"<\/a>EL c\u00f3digo es:<\/p>\n

[sourcecode language=\u00bbpy\u00bb]
\nint value;
\nint i;
\nint valueservo;
\nint valuemotor=2;
\nuchar position=1;<\/p>\n

void setup(void)
\n{
\nservo.attach(0);
\npinMode(1,INPUT);
\npinMode(2,INPUT);<\/p>\n

}<\/p>\n

void loop(void)
\n{
\nservo.write(0,230);
\ndelay(500);
\nservo.write(0,90);
\ndelay(1000);
\nanalogWrite(11,valuemotor);\t\/\/ 50% square wave on output 11
\n\/\/analogWrite(12,102);\t\/\/ 10% square wave on output 12
\nif (digitalRead(1)==LOW) valuemotor=valuemotor+10;
\nif (digitalRead(2)==LOW) valuemotor=valuemotor-10;
\nif (valuemotor>=1023) valuemotor=1023;
\nif (valuemotor<=2) valuemotor=2;<\/p>\n

}
\n[\/sourcecode]<\/p>\n","protected":false},"excerpt":{"rendered":"

Hola… buenas, hoy con una tonter\u00eda que se me ocurri\u00f3 hace tiempo y nunca tuve el tiempo para hacerlo, hoy dedique un ratillo a ello,…<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3],"tags":[],"_links":{"self":[{"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=\/wp\/v2\/posts\/356"}],"collection":[{"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=356"}],"version-history":[{"count":7,"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=\/wp\/v2\/posts\/356\/revisions"}],"predecessor-version":[{"id":361,"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=\/wp\/v2\/posts\/356\/revisions\/361"}],"wp:attachment":[{"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pinguino.walii.es\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}