Skip to main content

Lack Of Space Is No Longer An Excuse For Not Having A Pen Plotter

Pen plotters, those mechanical X-Y drawing machines that have in many cases been superseded by inkjet and other printer technologies, exert a fascination from a section of our community. Both analogue and digital machines are brought out of retirement for some impressive graphical effects, and we suspect that more than one of you wishes you had the space for one in your lives.

The good news is that you now no longer need room for a hefty piece of 1970s instrumentation, because the ever-inventive [Bart Dring] has produced a tiny 3D-printed plotter with an ESP32 at its heart. The ESP runs his ESP32 port of the Grbl firmware, and can handle a G-code file placed wirelessly upon the controller’s SD card.

The mechanism is particularly clever, using a single belt for both X and Y axes. The pen lift Z axis is a hinged design rather than a linear one, with a hobby servo doing the lifting. The hinge bearings are placed as close as possible to the paper surface to achieve an approximation to a vertical lift. You can see the machine in action in the video below the break, drawing its own self-portrait.

If you are a long-time reader you will recognise [Bart]’s work, he has appeared here quite a few times. His coaster-cutting machine and his CNC plotter badge are particularly memorable.



from Hackaday https://ift.tt/2Kc3sVd

Comments

Popular posts from this blog

Bill Gates steps down from Microsoft’s board to focus on philanthropy

In an announcement on Friday, Microsoft revealed that company co-founder Bill Gates has decided to step down from his role on its Board of Directors in order to focus on his philanthropic efforts at the Bill & Melinda Gates Foundation. This is Gate’s biggest change to his role at Microsoft since stepping down as company chairman in February 2014. According … Continue reading from SlashGear https://ift.tt/2We90Gu

World Economic Forum launches Global AI Council to address governance gaps

The World Economic Forum is creating a series of councils that create policy recommendations for use of things like AI, blockchain, and precision medicine. Read More from VentureBeat http://bit.ly/2EKBjD4

A Mini USB Keyboard That Isn’t A Keyboard

A useful add-on for any computer is a plug-in macro keyboard, a little peripheral that adds those extra useful buttons to automate tasks. [ Sayantan Pal] has made one, a handy board with nine programmable keys and a USB connector, but the surprise is that at its heart lies only the ubiquitous ATmega328 that you might find in an Arduino Uno. This isn’t a USB HID keyboard, instead it uses a USB-to-serial chip and appears to the host computer as a serial device. The keys themselves are simple momentary action switches, perhaps a deluxe version could use key switches from the likes of Cherry or similar. The clever part of this build comes on the host computer, which runs some Python code using the PyAutoGui library. This allows control of the keyboard and mouse, and provides an “in” for the script to link serial and input devices. Full configurability is assured through the Python code, and while that might preclude a non-technical user from gaining its full benefit it’s fair to say that ...