MonoFab SRM-20
> VOLUME: 203.2 x 152.4 x 60.5 mm
> SPINDLE: 7,000 RPM
Design Inspiration & Kicad Exporting
For this week, the challenge was to move from a breadboard prototype to a professional permanent circuit. For that I used a Monofab, and a Copper with fiberglass botom plaque. Taking inspiration form my friend's Oscar Hernandez plaque I decided to make a module for Autobot design from Transformers, since he made one out of the decepticons logo.
1.- Exporting from KiCAD
> FIG 01: SVG_EXPORT_PROCESS.MP4
PROTOTYPE_V1
PRODUCTION_V2
STAGE 02: [ FILE CONVERSION ]
> TRACES_CALCULATION.MP4
> OUTLINE_CALCULATION.MP4
To prepare the file for the Monofab I used two SVG files, one for the inside milling and one for the outside milling, and for this I used a webpage called modsproject.
SOFTWARE SETUP: [ V-PANEL & DRIVERS ]
STAGE 03: [ PCB MILLING ]
> DEBUGGING_MODE: BOARD_TESTS
Verifying circuit integrity and logic.
TEST_01: CONTINUITY
TEST_02: SIGNAL_LOGIC
// Pin definition using 'D' nomenclature
const int buttonPin = D9; // Button on D9
const int externalLedPin = D10; // Your LED on D10
// Variables to manage state
bool ledOn = false;
bool lastButtonState = HIGH;
void setup() {
Serial.begin(9600);
pinMode(buttonPin, INPUT_PULLUP);
pinMode(externalLedPin, OUTPUT);
digitalWrite(externalLedPin, LOW);
}
void loop() {
bool currentButtonState = digitalRead(buttonPin);
if (lastButtonState == HIGH && currentButtonState == LOW) {
delay(50);
ledOn = !ledOn;
digitalWrite(externalLedPin, ledOn ? HIGH : LOW);
while (digitalRead(buttonPin) == LOW) {
delay(10);
}
}
lastButtonState = currentButtonState;
}
PRODUCTION FILES UNLOCKED
Download SVG, RML and CAD source files.








