Cortador casero de poliuretano o cualquier otro tipo de foam

P7091366Aquí mi nueva herramienta casera para el taller, un cortador de foam.

Para hacer algunas cosas relacionadas con aeromodelismo necesitaba un cortador de foam así que dicho y hecho. Con unas pocas tablas, tornillos, un trozo de hilo de nicrom, un dimmer y un regulador de 12V de las lamparas halógenas salió esto. La verdad es que corta de lujo y estoy super contento con el resultado.

P7091368 P7091365 P7091367

Power supply adjustable using an PC ATX power supply

When you start to have many motors and other gadgets at home, it is essential to have an adjustable power supply, because each device operates at a different voltage, and some of them also have a high consumption. So after a long time mulling over the idea, here is what has been.

DSCF1640

Using a computer ATX supply and other components I’ve built a power supply adjustable with four outputs:

  • Adjustable output between 0.8 and 12V and a maximum of 6A
  • Fixed 5V and 40A maximum output
  • Output 12V fixed and 17A maximum
  • Output adjustable between 12 and 35V and maximum 10A

The maximum amps are limited by the power of the ATX supply and the voltage regulators used. Coming from China I’ll try not to take them to the limit and also some other components don’t allow high amperes. For example, connectors banana I’ve used have a theoretical maximum of 19A with it nor should never exceed that amount. Anyway, in the day to day it is rare that pass 5A with the devices that I plug in so at the moment I do not care I some day I will do a 2.0 version with better quality components and a better wiring.

The power supply also has a voltage of each output via a switch meter and a meter overall amperage of all outputs. And two LEDs, one indicate when is plugged in and another when is turned on.

Here are the photos and layout.

DSCF1638 DSCF1641 DSCF1643 DSCF1646 DSCF1649 DSCF1653 DSCF1658 imageesquema4

Fuente de alimentación regulable usando fuente ATX

Cuando empiezas a tener muchos motorcillos y otros cacharros por casa, se hace indispensable tener una fuente de alimentación regulable, porque cada aparato funciona a un voltaje diferente, y algunos de ellos además tienen un consumo elevado. Así que tras mucho tiempo dándole vueltas a la idea, aquí es lo que ha resultado.

DSCF1640

Usando una fuente ATX de ordenador y otros componentes he construido una fuente de alimentación regulable con cuatro salidas:

  • Salida regulable entre 0.8 y 12V y un máximo de 6A
  • Salida de 5V fijos y un máximo de 40A
  • Salida de 12V fijos y un máximo de 17A
  • Salida regulable entre 12 y 35V y un máximo de 10A

Los amperios máximos vienen marcados por la potencia de la fuente y los reguladores de tensión usados. Al venir de China intentaré no llevarlos al límite y además en algún punto la instalación no está a la altura. Por ejemplo, los conectores banana que he usado tienen un máximo teórico de 19A con lo que tampoco debería de sobrepasar nunca esa cantidad. De cualquier forma en el día a día es raro que pase de 5A con los aparatos que enchufo así que de momento no me preocupo y el día que tenga ganas haré una versión 2.0 con componentes de mejor calidad y un mejor cableado.

La fuente de alimentación además tiene un medidor de voltaje de cada salida mediante un interruptor y un medidor de amperaje global de todas las salidas. Y dos LED’s, uno que marca que está enchufada a la corriente y otra que está encendida.

Y no me lío más, aquí van las fotos y esquema.

DSCF1638 DSCF1641 DSCF1643 DSCF1646 DSCF1649 DSCF1653 DSCF1658 imageesquema4

Paint board with canvas (jQuery plugin)

On the occasion of a possible project I started researching on how to make a kind of “paint” in the web. I knew the existence of canvas but it wasn’t very clear what could it do and compatibility issues of browsers that could have.

In the end I developed a jQuery plugin which everyone can could use. And here’s a DEMO.

More information and download HERE

DEMO de canvasPaint

Paleta de dibujo tipo paint, con canvas

Con motivo de un posible proyecto me puse a investigar sobre como hacer una especie de “paint” en web. Conocía la existencia de canvas pero no tenía muy claro hasta donde podía llegar y los problemas de compatibilidad de navegadores que podía tener.

Al final me lié y me lié y terminé desarrollando un plugin de jQuery así que nada, aquí lo dejo para el que le pueda servir. Y aquí una DEMO.

Más info y descarga AQUÍ.

DEMO de canvasPaint

CKEditor Media Embed with multiples instances

To embed videos from YouTube, Vimeo, etc. .., there is a plugin called MediaEmbeb which performs its tasks perfectly.

When used in my project I realized that if on the same page we have more of an HTML editor, going to embed a video in one of the first editors, it actually inserts the last of them.

I have been reviewing the code and the solution is very simple.

  1. Look for the plugin folder in «.. / CKEditor / plugins / mediaembed /»
  2. In that folder locate and open the file «plugin.js»
  3. Locate the line:
    CKEDITOR.dialog.add( 'MediaEmbedDialog', function ()
  4. And replace it:
    CKEDITOR.dialog.add( 'MediaEmbedDialog', function (editor)

With this simple change everything will work correctly.