Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "production build"

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
pull_request:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
smart-controller:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: INTI-CMNB/KiBot@v2_k6
with:
config: kibot.yaml
dir: output
schema: FETProbe_tiny.kicad_sch
board: FETProbe_tiny.kicad_pcb

- uses: actions/upload-artifact@v3
with:
name: manufacturing
path: output/Manufacturers
- uses: actions/upload-artifact@v3
with:
name: assembly and debugging
path: |
output/Browse
output/Assembly
98 changes: 98 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# PCB production files
gerbers
fab
jlcpcb
*-drc.txt
*-erc.txt
kibot_errors.filter
Assembly
Manufacturers
Browse
index.html

*-bak

# Created by https://www.toptal.com/developers/gitignore/api/kicad,windows,linux
# Edit at https://www.toptal.com/developers/gitignore?templates=kicad,windows,linux

### KiCad ###
# For PCBs designed using KiCad: https://www.kicad.org/
# Format documentation: https://kicad.org/help/file-formats/

# Temporary files
*.000
*.bak
*.bck
*.kicad_pcb-bak
*.kicad_sch-bak
*-backups
*.kicad_prl
*.sch-bak
*~
_autosave-*
*.tmp
*-save.pro
*-save.kicad_pcb
fp-info-cache

# Netlist files (exported from Eeschema)
*.net

# Autorouter files (exported from Pcbnew)
*.dsn
*.ses

# Exported BOM files
*.xml
*.csv

### KiCad Patch ###
rescue-backup/

*.tsv
bom/

# Gerber export output
out/

### Linux ###

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*

# .nfs files are created when an open file is removed but is still being accessed
.nfs*

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# End of https://www.toptal.com/developers/gitignore/api/kicad,windows,linux
2 changes: 0 additions & 2 deletions BF998.bak

This file was deleted.

5 changes: 2 additions & 3 deletions FETProbe_tiny.kicad_pcb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
)
(pad_to_mask_clearance 0.05)
(solder_mask_min_width 0.1)
(aux_axis_origin 100 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
Expand Down Expand Up @@ -901,7 +900,7 @@
(dimension (type aligned) (layer "Dwgs.User") (tstamp 51b86df6-13a4-490e-a0ca-27bffb4bfe3f)
(pts (xy 125 107.5) (xy 125 92.5))
(height 3.3)
(gr_text "15,0000 mm" (at 127.15 100 90) (layer "Dwgs.User") (tstamp 51b86df6-13a4-490e-a0ca-27bffb4bfe3f)
(gr_text "15.0000 mm" (at 127.15 100 90) (layer "Dwgs.User") (tstamp 51b86df6-13a4-490e-a0ca-27bffb4bfe3f)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
Expand All @@ -910,7 +909,7 @@
(dimension (type aligned) (layer "Dwgs.User") (tstamp 80d2abcd-ebed-4514-9189-46be16497b8a)
(pts (xy 125 105.7) (xy 102 105.7))
(height -4.1)
(gr_text "23,0000 mm" (at 113.5 108.65) (layer "Dwgs.User") (tstamp 80d2abcd-ebed-4514-9189-46be16497b8a)
(gr_text "23.0000 mm" (at 113.5 108.65) (layer "Dwgs.User") (tstamp 80d2abcd-ebed-4514-9189-46be16497b8a)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
Expand Down
74 changes: 0 additions & 74 deletions FETProbe_tiny.kicad_prl

This file was deleted.

Loading