We start by characterizing the design rules for our Roland
MDX 20.
we used 0.4mm V-bit for the traces and 1.2 Endmill for the outline.
We set the cutting speed for the to be 4mm/s, and we set the cutting speed for the
outline is 2mm/s
Our Lovely Modela with a fresh surfaced bed.
Calculating the toolpath for the design using Mods.
Viewing the toolpath.
Using 1.2mm Endmill for outline and 0.4mm V-bit for traces.
Setting the origin and start the process.
Here is our hero shot!.
Check our
Group assignment page to see more of our assignment.
Then I start stuffing the PCB with the components into my PCB.
Then I testing PCB by write a simple code to check if it works.
#define led 26
#define btn 27
void setup() {
pinMode(btn, INPUT_PULLUP);
pinMode(led, OUTPUT);
}
void loop() {
if (digitalRead(btn) == LOW) {
for (int i = 0; i < 3; i++) {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
} else {
digitalWrite(led, LOW);
}
}