10 KiB
TODO: Add table of content
MSLA PCB Exposure: KiCad → Photon Mono 4
Why MSLA?
Using an MSLA (Masked Stereolithography Apparatus) resin printer for creating PCBs is a technique known as "Direct UV Exposure." Instead of printing a plastic part, you use the printer's LCD screen as a dynamic digital mask to cure photosensitive materials (etch resist, solder resist and silkscreen) on a copper board.
The "Matrix LED" ensures uniform light distribution across the entire build area. When exposing a photosensitized board, uneven lighting can cause some areas to be under-exposed (washing away traces) or over-exposed (causing traces to merge). The matrix source ensures the center and corners of your PCB receive the same energy, resulting in a reliable etch.
The objective
KiCad PCB layers need to be converted to .pm4n files for direct UV exposure on an Anycubic Photon Mono 4 (9024×5120 px, 17 µm/px, 1494.12 DPI) on the screen size of 153.408 x 87.040 mm.
Hardware
- A resin 3D printer (e.g., Anycubic Photon Mono 4)

- Photosensitive PCB. For consistent results, a pre-sensitized board like the Bungard positive photoresist boards is highly recommended due to its uniform coating. A good example is Bungard 160x100 double-sided 3,49 €.

- UV light curing Solder Mask e.g. from Mechanic. Use green as the solder mask and white for the silkscreen.

Software
1. Install KiCad
Ensure you have kicad installed:
sudo apt update
sudo apt install kicad
2. KiCad: Set your design grid
In KiCad's PCB editor, go to Preferences → Preferences → PCB Editor → Grids and add a custom grid of 0.017 mm. This ensures trace edges land on pixel boundaries and avoids the sub-pixel rounding that causes the ±1px size error people see with arbitrary grids.
3. Export gerbers from KiCad
- Open your PCB project in the KiCad PCB Editor.
- Go to File -> Plot and select
Plot formatasSVGand set theOutput directory. - In the
Include Layerssection select layersF.Cu,B.Cu,B.MaskandF.Silkscreen. Each layer will be ploted as a separate SVG file. - Optionaly, select additional layer(s) e.g.
Edge.Cutsin thePlot on All Layerssection. This way you can merge layers i.e. add board outset into each file generated. This is usually not needed. - Click Plot and Close.

4. Install CHITUBOX Basic
Follow the offical installatin guide for Ubuntu
5. Create the Dummy.pm4n file
Open CHITUBOX Basic slicer (or any other slicer that works for your resin printer), select printer Anycubic Photon Mono 4, slice any tiny STL (e.g.: 1×1×0.05 mm box), and save as Dummy.pm4n.
This file is reused for every job — it carries the correct LCD resolution metadata.
MSLA PCB Exposure
If you want to automate the conversion of gerber to printing files, you can jump to the section Appendix: Automated script.
UVtools has a dedicated PCB Exposure tool that converts a Gerber file to a pixel-perfect image given your printer's LCD resolution, specifically for exposing copper traces.
1. Install UVtools
sudo apt-get install -y curl
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/sn4k3/UVtools/master/Scripts/install-dependencies.sh)"
2. Run UVtools
cd UVtools
./UVtools
3. Export .pm4n file from Gerber layer
- You export Gerber from KiCad (not SVG), which natively gives you positive/negative control per layer.
- You open the
Dummy.pm4nfile inUVtools(a minimal valid.pm4nsliced byChituboxorPhoton Workshopwith any tiny model), then useTools → PCB Exposureto inject your Gerber layer e.g.:Flow_Controller_Panel-Front.gbr. - You control
inversion,invertand theexposure timeat the bottom of thePCB exposuredialog. - You save it as e.g.:
Flow_Controller_Panel-Front.pm4nfile.
4. Check the printer exposure
Open Chitubox
cd /opt/CBD/CHITUBOX_Basic
./CHITUBOX_Basic.sh
Open the Flow_Controller_Panel-Front.pm4n file to visually verify before printing.
5. Print
Place the presensitized copper board on the Anycubic Photon Mono 4 printer's LCD screen. Copy the file Flow_Controller_Panel-Front.pm4n the USB drive and 3D print it.
6. Developing
- After exposure, you must develop the board to reveal the pattern.
- For a positive photoresist board (like the Bungard brand), the developer is a weak alkaline solution. A common and effective developer is a 1% solution of Sodium Hydroxide (NaOH) in distilled or demineralised water.
- For the UV light curing solder mask, allow more time to it to harden. Clean the uncured part with Izopropanol afterwards.
- Safety First: When working with chemicals like NaOH, always wear gloves and eye protection.
- Submerge the board in the developer solution and gently agitate it. This should take 30-90 seconds, depending on the resist and developer freshness.
- Rinse the board thoroughly with water.
7. Etching
For the developed Bungard photoresist PCB, etch the board using either sodium persulfate or ferric chloride.
-
For
sodium persulfate, prepare a solution with approximately 200–250 g/L and heat it to 40–50 °C. -
For
ferric chloride, use a ready-to-use solution or prepare it according to the manufacturer's instructions and maintain a temperature of 35–45 °C.
Immerse the board in the etchant and agitate gently until all exposed copper has been removed, typically within 5–15 minutes. Rinse the board thoroughly with water after etching. To remove the remaining photoresist, immerse the board in a 2–5% sodium hydroxide (NaOH) solution at room temperature for 1–2 minutes, then rinse thoroughly with water and dry the board.
8. Drilling holes and milling board outlines
Use the project kicad2gcode to generate G-Code for CNC driling and outlines milling.
Appendix: Automated script
Automate the conversion from KiCAD to print files using a script.
1. Install dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install pygerber Pillow numpy
Or activate the venv once and put source .venv/bin/activate in your shell profile.
2. Export multiple layers (e.g. copper + soldermask + silkscreen)
./export.sh \
--layers F.Cu,B.Cu,F.Mask,B.Mask,F.SilkS,B.SilkS \
--invert F.Cu,B.Cu,F.Mask,B.Mask,F.SilkS,B.SilkS \
--mirror F.Cu,F.Mask,F.SilkS \
--exposure 60 \
../kicad2panel/panel/Flow_Controller_Panel.kicad_pcb
It should output:
Plotted to './output/gerbers/Flow_Controller_Panel-Front.gbr'.
Plotted to './output/gerbers/Flow_Controller_Panel-Back.gbr'.
Plotted to './output/gerbers/Flow_Controller_Panel-F_Silkscreen.gbr'.
Plotted to './output/gerbers/Flow_Controller_Panel-B_Silkscreen.gbr'.
Plotted to './output/gerbers/Flow_Controller_Panel-F_Mask.gbr'.
Plotted to './output/gerbers/Flow_Controller_Panel-B_Mask.gbr'.
output/pm4n/Flow_Controller_Panel-Front.pm4n
output/pm4n/Flow_Controller_Panel-Front.preview.png
output/pm4n/Flow_Controller_Panel-Back.pm4n
output/pm4n/Flow_Controller_Panel-Back.preview.png
output/pm4n/Flow_Controller_Panel-F_Mask.pm4n
output/pm4n/Flow_Controller_Panel-F_Mask.preview.png
output/pm4n/Flow_Controller_Panel-B_Mask.pm4n
output/pm4n/Flow_Controller_Panel-B_Mask.preview.png
output/pm4n/Flow_Controller_Panel-F_Silkscreen.pm4n
output/pm4n/Flow_Controller_Panel-F_Silkscreen.preview.png
output/pm4n/Flow_Controller_Panel-B_Silkscreen.pm4n
output/pm4n/Flow_Controller_Panel-B_Silkscreen.preview.png
2.1. Check the layer preview
Check the output/pm4n/Flow_Controller_Panel-*.preview.png images — traces should appear black on white background.
- background = UV exposed = resist removed = etched away
- traces = dark = resist kept = copper stays
2.2. Check the printer exposure
Open the .pm4n in Chitubox Basic slicer to visually verify before printing.
2.3. Adjust exposure
Start with --exposure 60 and bracket from there — Bungard presensitized at 405nm typically lands between 30–120s depending on board vintage and storage.
3. Export single layer (e.g. copper)
Export the front layer as gerber
kicad-cli pcb export gerbers -o output/gerbers -l F.Cu ../kicad2panel/panel/Flow_Controller_Panel.kicad_pcb
It should output
Plotted to 'output/gerbers/Flow_Controller_Panel-Front.gtl'.
Convert the gerber to pm4n and preview
python3 gerber_to_pm4n.py Dummy.pm4n output/gerbers/Flow_Controller_Panel-Front.gtl \
--invert --mirror --exposure 120
It should output
output/pm4n/Flow_Controller_Panel-Front.pm4n
output/pm4n/Flow_Controller_Panel-Front.preview.png
Open the preview image
xdg-open output/pm4n/Flow_Controller_Panel-Front.preview.png
Continue at the 4. Check the printer exposure section.
Troubleshooting
kicad-cli: command not found — add KiCad to PATH:
export PATH="/usr/lib/kicad/bin:$PATH"
Or on Flatpak:
alias kicad-cli='flatpak run --command=kicad-cli org.kicad.KiCad'
Expected Gerber not found — KiCad's layer→filename mapping:
| Layer | Filename stem |
|---|---|
F.Cu |
Front |
B.Cu |
Back |
F.Mask |
F_Mask |
B.Mask |
B_Mask |
F.SilkS |
F_Silkscreen |
