https://github.com/thesnowfield/icebox
This is a tray that can store your beloved chips in.
https://github.com/thesnowfield/icebox
Last synced: 3 months ago
JSON representation
This is a tray that can store your beloved chips in.
- Host: GitHub
- URL: https://github.com/thesnowfield/icebox
- Owner: TheSnowfield
- License: mit
- Created: 2022-06-02T08:35:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-11T08:05:18.000Z (almost 3 years ago)
- Last Synced: 2025-01-12T21:28:26.380Z (5 months ago)
- Language: OpenSCAD
- Homepage:
- Size: 806 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## iCEBox
This is a tray that can store your beloved chips in.
## Make your own
Simply to use as this,
```scad
use <../lib/icebox.scad>
use <../lib/icebox-cover.scad>// declare your chip package size
// 8.0mm * 8.0mm * 1.0mm
chip_x = 8;
chip_y = 8;
chip_z = 1;// how many columns and rows
// 6 x 10 boxes
box_size = [6, 10];icebox(
chip = [chip_x, chip_y, chip_z],
count = box_size
);translate([0, 110, 0])
icebox_cover(
chip = [chip_x, chip_y, chip_z],
count = box_size
);```
and your iCEBox will come out! :P
Enjoy!
I guess you're can't wait to print it XD.## LICENSE
Licensed under the MIT license with ❤.