Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mryndzionek committed Feb 12, 2022
0 parents commit 749a4c1
Show file tree
Hide file tree
Showing 41 changed files with 520 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.stl filter=lfs diff=lfs merge=lfs -text
*.step filter=lfs diff=lfs merge=lfs -text
41 changes: 41 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: build

on:
push:
branches:
- build
jobs:
build:

env:
BUILD_TYPE: Release

runs-on: ubuntu-latest

steps:

- name: Prepare
run: |
sudo apt-get update
sudo apt-get install python3 inotify-tools
wget https://github.com/CadQuery/CQ-editor/releases/download/0.2/CQ-editor-Linux-x86_64.zip
unzip CQ-editor-Linux-x86_64.zip
mkdir output
- name: Checkout
uses: actions/checkout@01aecccf739ca6ff86c0539fbc67a7a5007bbc81

- name: Build
run: |
./CQ-editor/CQ-editor ../keyboard.py&
touch keyboard.py
./wait.sh
sleep 5
python3 process.py
- uses: actions/upload-artifact@e448a9b857ee2131e752b06002bf0e093c65e571
with:
name: output
path: |
output
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.svg
*.stl
*.step
98 changes: 98 additions & 0 deletions GALLERY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# Gallery

## output/atreus_18h_cnc
![image_0](output/atreus_18h_cnc.png)

## output/atreus_18h_print
![image_1](output/atreus_18h_print.png)

## output/atreus_18hs_cnc
![image_2](output/atreus_18hs_cnc.png)

## output/atreus_18hs_print
![image_3](output/atreus_18hs_print.png)

## output/atreus_18l_cnc
![image_4](output/atreus_18l_cnc.png)

## output/atreus_18l_print
![image_5](output/atreus_18l_print.png)

## output/atreus_18ls_cnc
![image_6](output/atreus_18ls_cnc.png)

## output/atreus_18ls_print
![image_7](output/atreus_18ls_print.png)

## output/atreus_32h_cnc
![image_8](output/atreus_32h_cnc.png)

## output/atreus_32h_print
![image_9](output/atreus_32h_print.png)

## output/atreus_32hs_cnc
![image_10](output/atreus_32hs_cnc.png)

## output/atreus_32hs_print
![image_11](output/atreus_32hs_print.png)

## output/atreus_32l_cnc
![image_12](output/atreus_32l_cnc.png)

## output/atreus_32l_print
![image_13](output/atreus_32l_print.png)

## output/atreus_32ls_cnc
![image_14](output/atreus_32ls_cnc.png)

## output/atreus_32ls_print
![image_15](output/atreus_32ls_print.png)

## output/atreus_40h_cnc
![image_16](output/atreus_40h_cnc.png)

## output/atreus_40h_print
![image_17](output/atreus_40h_print.png)

## output/atreus_40hs_cnc
![image_18](output/atreus_40hs_cnc.png)

## output/atreus_40hs_print
![image_19](output/atreus_40hs_print.png)

## output/atreus_40l_cnc
![image_20](output/atreus_40l_cnc.png)

## output/atreus_40l_print
![image_21](output/atreus_40l_print.png)

## output/atreus_40ls_cnc
![image_22](output/atreus_40ls_cnc.png)

## output/atreus_40ls_print
![image_23](output/atreus_40ls_print.png)

## output/atreus_52h_cnc
![image_24](output/atreus_52h_cnc.png)

## output/atreus_52h_print
![image_25](output/atreus_52h_print.png)

## output/atreus_52hs_cnc
![image_26](output/atreus_52hs_cnc.png)

## output/atreus_52hs_print
![image_27](output/atreus_52hs_print.png)

## output/atreus_52l_cnc
![image_28](output/atreus_52l_cnc.png)

## output/atreus_52l_print
![image_29](output/atreus_52l_print.png)

## output/atreus_52ls_cnc
![image_30](output/atreus_52ls_cnc.png)

## output/atreus_52ls_print
![image_31](output/atreus_52ls_print.png)

21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 mryndzionek

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# CadQuery 2 keyboard case generator

## :warning: This is an experimental project
## :warning: Be careful when using the generated files


# TODO

- [ ] adding USB connector cutout
Loading

0 comments on commit 749a4c1

Please sign in to comment.