I ended up modelling the original plans in Fusion 360. I did not need a 3d structure
since I was going to make molds using the CNC mill and laser cutter. I modelled a wood
structure that originally was going to be a mockup using CorelDraw. I used Easel to model
the pieces(3) for the CNC mill.
The sensor was hand drawn using Pixlr. The image was then shrunk so that the chip size matched the Attiny45.
CapacitiveSensor cs_4_2 = CapacitiveSensor(4,2);
becomes:
CapacitiveSensor cs_4_3 = CapacitiveSensor(4,3);
Only one sensor is needed because I choose to use microcontrollers on
each sensor as opposed to one Attiny45 for 3 sensors.
CapacitiveSensor cs_4_3 = CapacitiveSensor(4,3);
void setup(){
cs_4_3.set_CS_AutocaL_Millis(0xFFFFFFFF);
Serial.begin(9600);}
void loop(){
long total1 = cs_4_e.capacitiveSensor(30);
Serial.print(total1);
delay(10);
}
The example gives a nice readout. However, there is a lag in the time, in which a tool is moved.