| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- kibot:
- version: 1
- preflight:
- check_zone_fills: true
- run_drc: true
- run_erc: true
- update_xml: true
- set_text_variables:
- - name: COMMIT_DATE_LONG
- command: 'python3 util/rev_info.py git_date'
- - name: COMMIT_DATE
- command: 'python3 util/rev_info.py git_date --short'
- - name: COMMIT_HASH
- command: 'python3 util/rev_info.py git_short_rev'
- - name: RELEASE_VERSION
- command: 'python3 util/rev_info.py git_release_version releases/view_base/'
- filters:
- - filter: 'Lines crossing edge cuts'
- error: 'silk_over_copper'
- regex: 'Arc on Edge.Cuts'
- outputs:
- - name: ibom
- comment: 'Interactive BOM'
- type: ibom
- options:
- dark_mode: true
- netlist_file: '%F.xml'
- extra_fields: 'LCSC,Mouser,Digikey,AliExpress,Note'
- - name: schematic
- type: pdf_sch_print
- - name: 'bom_csv'
- comment: "Bill of Materials in CSV format"
- type: bom
- options:
- use_alt: false
- number: 1
- aggregate:
- - file: electronics/view_screen/view_screen.kicad_sch
- name: 'Screen'
- number: 1
- ref_id: 'SCREEN-'
- - name: 3d
- type: render_3d
- options:
- no_virtual: true
- view: 'top'
- copper: '#99967F'
- board: '#C3BA9B'
- copper: '#99967F'
- zoom: 3
- orthographic: true
- ray_tracing: true
- height: 1024
- width: 1024
- - name: 3d_back
- type: render_3d
- extends: 3d
- options:
- view: 'bottom'
|