-
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.
Merge branch 'master' of https://github.com/dviejo/3d-Models
- Loading branch information
Showing
130 changed files
with
4,145 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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 @@ | ||
/** | ||
* tft24.scad | ||
* | ||
* Created by Diego Viejo | ||
* 24/Oct/2019 | ||
* | ||
* Case for attaching a BigTreeTech TFT24 V1.1 display to a 60x20 profile | ||
* | ||
*/ | ||
|
||
Height = 60; | ||
Width = 110; | ||
Length = 20; | ||
|
||
roundCorner = 5; | ||
|
||
module case() | ||
{ | ||
difference() | ||
{ | ||
hull() | ||
{ | ||
translate([roundCorner/2, 0, 0]) cylinder(d=roundCorner, h=Length, $fn=20); | ||
translate([Width - roundCorner/2, 0, 0]) cylinder(d=roundCorner, h=Length, $fn=20); | ||
translate([roundCorner/2, Height - roundCorner/2, 0]) cylinder(d=roundCorner, h=Length, $fn=20); | ||
translate([Width - roundCorner/2, Height - roundCorner/2, 0]) cylinder(d=roundCorner, h=Length, $fn=20); | ||
} | ||
|
||
hull() | ||
{ | ||
translate([roundCorner/2, 0, 2]) cylinder(d=roundCorner-2, h=Length, $fn=20); | ||
translate([Width - roundCorner/2, 0, 2]) cylinder(d=roundCorner-2, h=Length, $fn=20); | ||
translate([roundCorner/2, Height - roundCorner/2, 2]) cylinder(d=roundCorner-2, h=Length, $fn=20); | ||
translate([Width - roundCorner/2, Height - roundCorner/2, 2]) cylinder(d=roundCorner-2, h=Length, $fn=20); | ||
} | ||
} | ||
} | ||
|
||
case(); |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Empty file.
Diff not rendered.
Empty file.
Diff not rendered.
Diff not rendered.
Empty file.
Diff not rendered.
Empty file.
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,44 @@ | ||
/** | ||
* Chain support | ||
* | ||
* Created by Diego Viejo | ||
* 8th April 2019 | ||
* | ||
* This is a replacement part for a bike security chain holder | ||
* | ||
*/ | ||
|
||
M4NutRad = 8/2; | ||
M4NutHeight = 3.2; | ||
|
||
Height = 15; | ||
Length = 55; | ||
Width = 15; | ||
|
||
holeMargin = (Length - 40)/2; | ||
|
||
innerRad = 20; | ||
|
||
difference() | ||
{ | ||
translate([0, -Width/2, 0]) cube([Length, Width, Height]); | ||
|
||
//main cavity | ||
translate([Length/2, 150/2, Height-5+innerRad]) rotate([90, 0, 0]) cylinder(r=innerRad, h=150); | ||
translate([Length/2-10, 0, Height-5]) cylinder(r=2, h=10, $fn=30); | ||
translate([Length/2+10, 0, Height-5]) cylinder(r=2, h=10, $fn=30); | ||
|
||
|
||
//nut and bolt holes | ||
translate([holeMargin, 0, -1]) | ||
{ | ||
cylinder(r=M4NutRad, h=M4NutHeight+1, $fn=6); | ||
translate([0, 0, M4NutHeight+1+0.4]) cylinder(r=2.5, h=Height, $fn=30); | ||
} | ||
translate([Length-holeMargin, 0, -1]) | ||
{ | ||
cylinder(r=M4NutRad, h=M4NutHeight+1, $fn=6); | ||
translate([0, 0, M4NutHeight+1+0.4]) cylinder(r=2.5, h=Height, $fn=30); | ||
} | ||
|
||
} |
Oops, something went wrong.