-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This is a plate you can screw the EBox bottom onto, which then allows you to hang the EBox on the side of a water reservoir. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
include <../box/board.scad> | ||
include <../box/box.scad> | ||
|
||
epsilon = 0.01; | ||
|
||
screw_head_height = 2; | ||
wall_thickness = 1; | ||
reservoir_thickness = 3; | ||
gap = 0.2; | ||
|
||
module plantl33_hook() { | ||
module recessed_hole() { | ||
w = 2; | ||
d = screw_head_height + wall_thickness; | ||
translate([0, 0, -epsilon]) { | ||
cylinder(d+1, 1.5, 1.5); | ||
cylinder(screw_head_height, 4, 4); | ||
} | ||
} | ||
|
||
union() { | ||
// Ebox mount plate. | ||
difference() { | ||
$fn = 40; | ||
cube([inner_dims[0]+2, inner_dims[1], wall_thickness+screw_head_height]); | ||
// Screw holes fox ebox; | ||
translate([-0, -5, 0]) { | ||
translate([15, 15, 0]) recessed_hole(); | ||
translate([40, 40, 0]) recessed_hole(); | ||
} | ||
} | ||
sep = wall_thickness+reservoir_thickness+gap*2; | ||
// Inside reservoir. | ||
translate([0, 0, -sep]) cube([5, inner_dims[1], wall_thickness]); | ||
// Top of the hook, spaning the reservoir wall. | ||
translate([-wall_thickness+epsilon, 0, -sep]) | ||
cube([wall_thickness, inner_dims[1], wall_thickness+sep+screw_head_height]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
include <hook.scad> | ||
|
||
plantl33_hook(); |
Binary file not shown.