├── .github └── workflows │ └── release.yml ├── .gitignore ├── PCB_Clip v19.f3d ├── PCB_Mount.FCStd └── README.md /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Create Release Archive 2 | 3 | on: 4 | push: 5 | tags: 6 | - '*' 7 | 8 | jobs: 9 | build: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@master 13 | 14 | - name: Archive Release 15 | uses: thedoctor0/zip-release@master 16 | with: 17 | filename: 'release.zip' 18 | exclusions: '*.git* *.FCStd1 *.FCStd2' 19 | 20 | - name: Upload Release 21 | uses: ncipollo/release-action@v1 22 | with: 23 | artifacts: "release.zip" 24 | token: ${{ secrets.GITHUB_TOKEN }} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /PCB_Clip v19.f3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydiy/PCB-Mount/b43c53c5ec6388d0c5cd42f888efc542e9ade880/PCB_Clip v19.f3d -------------------------------------------------------------------------------- /PCB_Mount.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raydiy/PCB-Mount/b43c53c5ec6388d0c5cd42f888efc542e9ade880/PCB_Mount.FCStd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PCB-Mount 2 | A Fusion 360 and FreeCAD project file that contains two bodies to mount PCBs: a simple spacer cylinder for classic screw mounts of PCBs and the RAYDIY's hipster PCB-Clips. 3 | 4 | Use with FreeCAD version 0.19.23576 or newer. I had problems with versions prior to this one. 5 | 6 | YouTube Video with introduction (in german) 7 | - https://youtu.be/MF4QiW3_oBQ 8 | 9 | Blog Article (in german) 10 | - https://raydiy.de/clippen-statt-schrauben-microcontroller-befestigen-mit-pcb-clips/ --------------------------------------------------------------------------------