mirror of
https://github.com/correl/openscad.git
synced 2024-11-21 19:18:42 +00:00
Add WLED controller box
This commit is contained in:
parent
3f759ad5e4
commit
6805f92b34
1 changed files with 30 additions and 0 deletions
30
wled.scad
Normal file
30
wled.scad
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
/* WLED Controller
|
||||||
|
*
|
||||||
|
* A version of the project box designed to encase an ESP8266 Wemos D1-Mini with
|
||||||
|
* a slot for wires connecting to its pins. Assumes a right-angle connector is
|
||||||
|
* soldered to the board.
|
||||||
|
*/
|
||||||
|
|
||||||
|
use <project_box.scad>
|
||||||
|
$fn=50;
|
||||||
|
|
||||||
|
mode = "all"; // ["case", "lid", "all"]
|
||||||
|
|
||||||
|
x = 27;
|
||||||
|
y = 35;
|
||||||
|
z = 7;
|
||||||
|
below = 5;
|
||||||
|
|
||||||
|
project_box([x, y, z],
|
||||||
|
below=below,
|
||||||
|
mode=mode) {
|
||||||
|
// Switch Sensor (Left)
|
||||||
|
cutout_right([x,y,z])
|
||||||
|
translate([5,1.5])
|
||||||
|
square([10,5]);
|
||||||
|
// USB Port (Front)
|
||||||
|
cutout_front([x,y,z])
|
||||||
|
translate([7, -5, 0])
|
||||||
|
square([15,10]);
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue