Week 3 - computer controlled cutting

Venyl

I wanted to cut a pcb with a venyl to give my young sister a small circuit that has led and battery mount on it to teach her about how electricity move in paths concept ..

so i decided to use HVAC tape .. HVAC tape

this tape is conductive and it has very low resistance …

for venyl cutter, we used Silhouette Cameo Cameo

i downlaoded extension for inkscape that can cut from the program directly .. Inkscaped d

inkscape-silhouette

this software provide add-on for inkscape you can control the Silhouette Cameo add-on

so i wanted to have this battery that can holded upside down to the circuit and power it up 9v Battery

so i started with simplest circuit which should just power up LED the idea is to give my young sister fun thing to look at also not just PCB circuit with paths :D led circuit

for venyl cut i can find 2 important parameters to play with, i set the values:

  • speed: 0
  • pressure: 20

after sending the first cut first cut

the cutter was pressing hard it cutted the piece while it should just cut the tape mask so i adjusted the parameter reducing the pressure to 15

result:

1 cut

this is better, i can take the sticker out..

after it was cut .. i put LED to it and powered it




i wanted to make the component to stick to the circuit so i started drawing “Sewing holes” so the components can be stiched into circuit .. inkscape holes inkscape holes however, this is not good as the tape will be teared .. so i thought that i ll design just normal circuit with 3 leds that can be powered with this 9v battery ..

the design: 3 leds design

the small cut for the path so i can solder SMD resistor .. to limit the current and not burn the led

i tried to cut it for long time .. around 2 hours of adjusting the parameters (speed, pressure) ..
the cuts where bad and it was just scratches ..

so i started invistigating the hardware and found that the small piece of the tape was sticked to the knife when i put high pressure in one of the cuts:

cutter knife

after cleaning it .. the cutter back to good condition i cut the design: 3 circuit masked

3 circuit unmasked

smd resistor

however, unfortunatily i couldnt solder the smd resistor into the tape i tried with: - solder wire - solder paste - hot air gun - solder tip - solder flux all of them didnt work the solder does not stick to the tape so i didnt have time but because this foil for HVAC so it was made from aluminium so i looked into internet and found this which i believe it would stick into it

Farnell Solder wire for aluminium

also found some videos on youtube that put engine oil to the aluminium sheet to solder on it Youtube solder on aluminium using oil

and of course there is EEVBLOG thread: EEVBLOG

laser cutting

Another part of the assignment this week is to Design, lasercut, and document a parametric press-fit construction kit, accounting for the lasercutter kerf, which can be assembled in multiple ways

The laser cutter we have in the lab is epilog laser mini 24 with bed size 610 x 305 mm. It is a versatile CO2 laser machine capable of cutting and engraving a lot of different materials like wood, acrylics, plastics and stone.

img

first i’ve to make the design. It has to be a parametric design. parametric design means something you can control with parameter so when the parameter changes it auto change the design. in design week i used a software called openscad where you make design with code and set parameters that determine sizes in the design. i used simple code


thickness = 1.05; //cardboard thickness
hole= thickness * 12; //cut 
len = thickness * 40; //square len
tran= len /2 ; 
    difference() {
        square(len); //big square    
        translate( [len,tran,0] ){    
            square([hole,thickness], center = true);}
        translate( [0,tran,0] ){    
            square([hole,thickness], center = true);}
        translate( [tran,0,0] ){    
            square([thickness,hole], center = true);}
        translate( [tran,len,0] ){    
            square([thickness,hole], center = true);}
        }

the final result is

img

The material i am using to cut the design is cardboard that is 1.2mm thickness. we did test parts on it to test the best thickness to use in design as group project here

group

We found that best thickness to put in design for cutting is 1.05mm and thats what i set in the code. i export the design in dxf and opened in inkscape to edit for laser cutting. the laser cutter software default detects vector lines color red (RGB 255/0/0) for cut and rastr blue (RGB 0/0/255) for engrave. I made the line color red

img

and change line width to very small value so software can detect it

img

I wanted to try engrave too so i add my name in blue to test

img

I saved the file and went to cut it. Printer settings can be controlled from printer setting. To know what settings to use i checked job manager that tells what setting to use for every material. I am using cardboard so i checked settings for that.

For cut speed 30 power 40 freq 500 For engrave speed 100 power 55

img img img

It cut it okay and engrave. i got parametric kit i can connect in so many ways

img img img img img

download dxf
download openscad
download pdf