Electronics, Embedded Systems, and Software are my breakfast, lunch, and dinner.
This is just a quick post, the blog isn't dead, I've just been busy. I've put together a reasonable OpenSCAD workflow that works for me and might work for others.
OpenSCAD is a 3D solid modeling program that performs computational geometry and is frequently used for describing models for 3D printing. It is a description language (and the program for compiling it) for solid shapes, procedurally generating them from primitive shapes like cubes, spheres, etc and mathematical operations such as unions and differences. Being fully text-based, it begs to live in version control and is usable through a CLI, leading to being able to be fully scripted. I started using OpenSCAD with the LED watch project and have since developed a fairly simple build system. It consists of two pieces:
I'll start with the Makefile. It's really straightforward and identical for each of my projects:
1SCAD=openscad
2BASEFILE=<path to top-level>.scad
3
4TARGETS=$(shell sed '/^module [a-z0-9_-]*\(\).*make..\?me.*$$/!d;s/module //;s/().*/.stl/' $(BASEFILE))
5
6all: ${TARGETS}
7
8.SECONDARY: $(shell echo "${TARGETS}" | sed 's/\.stl/.scad/g')
9
10include $(wildcard *.deps)
11
12%.scad: Makefile
13 printf 'use <$(BASEFILE)>\n$*();' > $@
14
15%.stl: %.scad
16 openscad -m make -o $@ -d $@.deps $<
In my top-level scad file, I then mark my top-level modules with a special comment:
1module Lid() { // `make` me
2 ...
3}
The way this works is pretty straightforward. Just run "make" with no arguments:
Armed with an STL, we can now go ahead and print. Typically, I put a fully assembled version of the top-levels in the top-level instantiation (since that isn't instantiated when including the file in the target's scad file) and point OpenSCAD directly to the top-level when editing.
The only non-automated part of this which is hard to check into version control is slicing the model. However, that's typically dictated per-print (and varies with wear and tear on the printer, the filament or resin used, etc), so I'm less motivated to figure out a good way to track it.
I have several examples of this workflow on github: