57 lines
1.2 KiB
YAML
57 lines
1.2 KiB
YAML
# Example KiBot config file
|
|
kibot:
|
|
version: 1
|
|
|
|
global:
|
|
solder_mask_color_top: blue
|
|
solder_mask_color_bottom: red
|
|
pcb_finish: ENIG
|
|
copper_thickness: "35"
|
|
|
|
outputs:
|
|
- name: 'report_simple'
|
|
comment: "Simple design report"
|
|
type: report
|
|
output_id: _simple
|
|
options:
|
|
template: simple
|
|
|
|
- name: 'report_full'
|
|
comment: "Full design report"
|
|
type: report
|
|
|
|
- name: 'print_front'
|
|
comment: "Top copper and silkscreen"
|
|
type: pcb_print
|
|
dir: Layers
|
|
output_id: -front
|
|
options:
|
|
title: 'Fake title for front copper and silk'
|
|
pages:
|
|
- scaling: 2.0
|
|
layers:
|
|
- layer: F.Cu
|
|
- layer: F.SilkS
|
|
- layer: Edge.Cuts
|
|
|
|
- name: 'print_bottom'
|
|
comment: "Bottom copper and silkscreen"
|
|
type: pcb_print
|
|
dir: Layers
|
|
output_id: -bottom
|
|
options:
|
|
title: 'Fake title for bottom copper and silk'
|
|
pages:
|
|
- scaling: 2.0
|
|
layers:
|
|
- layer: B.Cu
|
|
- layer: B.SilkS
|
|
- layer: Edge.Cuts
|
|
|
|
- name: 'print_sch_svg'
|
|
comment: "Schematic"
|
|
type: svg_sch_print
|
|
dir: .
|
|
options:
|
|
output: Schematic.svg
|