Blender screen with CAD drawing

CAD Sketcher, It’s Parametric CAD For Blender

It’s very early days for CAD Sketcher, a new parametric CAD add-on for Blender by [hlorus], but it looks very promising.

We do a lot of 3D work and like Blender as an environment. It’s always annoying that Blender doesn’t do parametric modeling, so we’re forced into a dedicated CAD package. Blending the two for that robot ocelot is always particularly annoying.

CAD Sketcher lets the user make a ‘sketch’, a 2D drawing. They then  constrain it, saying “this line is vertical, that line is parallel to this one”, until the sketch is fully defined. It’s a normal part of parametric modelling. This is powerful when your model needs refined over and over.

There’s an old adage, “Better a tool that does 90% of the job well than one that does 100% poorly”. For CAD systems, (and much other software), we’d suggest “Better a tool that does 90% of the job well and works with whatever does the other 10%”.

3D render of gaurd
Guard Drawn In CAD Sketcher And Blender

We tried a test part, and being in Blender’s universe showed its value. CAD Sketcher doesn’t do bevels and rounds yet, and probably won’t for a while. But Blender’s perfectly happy doing them.

It’s not going to put SolidWorks out of business any time soon, but it’s a very promising new development. We hope it gathers some community and encourage contributions.

We cover CAD frequently, like the recent advances with CadQuery  and the port of OpenSCAD to WASM.

[thanks paulvdh]

Continue reading “CAD Sketcher, It’s Parametric CAD For Blender”

No-Laser CNC Engraver Is Something New Under The Sun

Hooking up a laser to a CNC gantry isn’t exactly an Earth-shattering innovation, but it does make for a useful tool. Even a cheap diode laser mounted to an old 3D printer can do engraving, marking, or even light-duty cutting. But what about a laser engraver without the laser? Can that be of any use?

Apparently, the answer is yes, if you can harness the power of the sun. That’s what [Lucas] did with his solar-tracking CNC engraver, the build of which is shown in the video below. The idea is pretty simple — mount a decent-sized magnifying lens where the laser optics would normally go on a laser engraver, and point the thing at the sun. But as usual, the devil is in the details. The sun has a nasty habit of moving across the sky during the day, or at least appearing to, so [Lucas] has to add a couple of extra degrees of freedom to a regular X-Y CNC rig to track the sun. His tracking sensor is simplicity itself — four CdS photocells arranged with a pair of perpendicular shades, and an Arduino to drive the gimbals in the correct direction to keep all four sensors equally illuminated. He had some initial problems getting the jerkiness out of the control loop, but the tracker eventually kept the whole thing pointing right at the Sun.

So how does it work? Not bad, actually — [Lucas] managed to burn some pretty detailed designs into a piece of wood using just the sun. He mentions adding a shutter to douse the cutting beam to allow raster patterns, but even better might be a servo-controlled iris diaphragm to modulate beam intensity and control for varying sun conditions. He might also check out this solar engraver we covered previously for some more ideas, too.

Continue reading “No-Laser CNC Engraver Is Something New Under The Sun”

Micromachining With A Laser

[Breaking Taps] has a nice pulsed fiber laser and decided to try it to micromachine with silicon. You can see the results in the video below. Silicon absorbs the IR of the laser well, although the physical properties of silicon leave something to be desired. He also is still refining the process for steel, copper, and brass which might be a bit more practical.

The laser has very short duration pulses, but the pulses have a great deal of energy. This was experimental so some of the tests didn’t work very well, but some — like the gears — look great.

Continue reading “Micromachining With A Laser”

2022 Sci-Fi Contest: A Friendly Wall Drawing Robot

Drawing on walls is fine for children, but adults tend to get bored quickly with such antics. Even more so when they realize who is responsible for cleaning up afterwards. Instead, consider delegating those duties to a friendly helper by the name of Fumik, as [engineer2you] has done.

Fumik, who looks like a cute little jellyfish, can draw pictures up to 5 meters wide and 3 meters high, making for a massive canvas. Powered by an Arduino Mega 2560 outfitted with a CNC shield, a pair of stepper motors drive pulleys with toothed belts to move Fumik to various positions along the wall. Another smaller stepper motor is used to drive the pen forwards and backwards as needed. Fumik can be programmed to trace out various designs in SVG format. These must be converted to code and programmed into the Arduino, at which point Fumik can begin work, drawing on the wall with its pen.

It’s a fun build, and based on photos shared by [engineer2you,] Fumik is quite able at drawing clean and neat designs without a lot of smudging or jagged lines. As a bonus, it’s easy to swap out the pen, so multicolored designs can be drawn in multiple passes.

We’ve seen other robot drawing builds before, too, like this capable portrait artist. Video after the break.

Continue reading “2022 Sci-Fi Contest: A Friendly Wall Drawing Robot”

Multicolor Drawbot Highlights Importance Of Limit Switches

Plotters and drawing robots are fun projects that let you create art with all the precision and perfection that computer numerical control can deliver. [TUENHIDIY] demonstrates that ably with the Multicolor DrawBot.

The build relies on a simple XY Cartesian design, using a pair of NEMA 17 stepper motors. It’s built in the typical CoreXY fashion, running GRBL firmware on an Arduino Uno.

Where [TUENHIDIY] gets creative is in the pen itself. Rather than using a simple ballpoint or marker, instead, a retractable multicolor pen is used instead. With the multicolor pen on board, [TUENHIDIY] notes the importance of limit switches in the design. These allow the the ‘bot to make multiple passes, each time in a different color, to build up a multicolor image. Without the limit switches in place, it would be impossible to line up each following pass.

We’d love to see the build taken even further with a servo-based system for switching colors automatically. As it is, though, [TUENHIDIY] has a capable plotter that can deliver tidy multicolor artworks.

One of the more curious applications of plotters of late are those used to send faux handwritten letters through the postal system.  Video after the break.

Continue reading “Multicolor Drawbot Highlights Importance Of Limit Switches”

CNC Toolpath Visualisation With OpenCV

[Tony Liechty] has been having a few issues getting into CNC machining — starting with a simple router, he’s tripped over the usual beginners’ problems, you know, things like alignment of the design to the workpiece shape, axis clipping and workpiece/clamp collisions. He did the decent hacker thing, and turned to some other technologies to help out, and came up with a rather neat way of using machine vision with OpenCV to help preview the toolpath against an image of the workpiece in-situ (video, embedded below.)

ChArUco (a combined chessboard and ArUco marker pattern) boards taped to the machine rails were used to give OpenCV a reference of where points in space are with respect to the pattern field, enabling identification of pixel locations within the image of the rails. A homography transformation is then used to link the two side references to an image of the workpiece. This transformation allows the system to determine the physical location of any pixel from the workpiece image, which can then be overlaid with an image of the desired toolpath. Feedback from the user would then enable adjustment of the path, such as shifts, or rotates to be effected in order to counter any issue that can be seen. The reduction of ‘silly’ clamping, positioning and other such issues, means less time wasted and fewer materials in scrap bin, and that can only be a good thing.

[Tony] says this code and setup is just a demo of the concept, but such ‘rough’ code could well be the start of something great, we shall see. Checkout the realWorldGcodeSender GitHub if you want to play along at home!

We’ve seen a few uses of OpenCV for assisting with CNC applications, like this cool you draw it, i’ll cut it hack, and this method for using machine vision to zero-in a CNC mill onto the centre of a large hole.

Continue reading “CNC Toolpath Visualisation With OpenCV”

You Draw It, CNC Cuts It

[Jamie] aka [vector76] hit us with a line-tracing plugin for OctoPrint that cuts out whatever 2D shape you draw on a piece of wood. The plugin lets you skip the modeling step entirely, going straight from a CNC-mounted webcam that reads your scribbles and gives you a Gcode toolpath in return. The code is on GitHub and there’s a demo video embedded below.

Under the hood, OpenCV is doing a lot of the image processing, including line detection, and the iterative “find the line” and “move the toolhead” steps really show off what computer vision can do. It starts off with a fiducial arrow for scale and orientation, then it mores the webcam around the scene. The user can enter the usual milling parameters: speeds, feeds, depth of cut, tool offset, milling direction, etc. And then it gets to work.

Right now, it’s limited to paths with non-crossing lines, and probably with good contrast and a nice dark line — all the usual CV restrictions. But mounting a webcam to a CNC toolhead and using it for various pathing problems really opens up tons of possibilities: visual homing, workpiece edge finding, copying parts, custom fitting odd shapes, and more. This project is clearly an invitation to keep on hacking, an appetizer. Once you see the girl pirate robot that [Jamie]’s daughter made, you’ll get the idea.

We’ve seen a similar OpenCV approach used for center-finding bore holes, but while we’ve seen a few webcams used with laser cutters, the CNC mill applications seem largely untapped. Let us know in the comments if you’ve got some other good examples.

Continue reading “You Draw It, CNC Cuts It”