Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
9f797adb
Commit
9f797adb
authored
3 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Fully mocking LED terminals
parent
dd7cdfd5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cad/CyanStripe/PCB.scad
+21
-7
21 additions, 7 deletions
cad/CyanStripe/PCB.scad
with
21 additions
and
7 deletions
cad/CyanStripe/PCB.scad
+
21
−
7
View file @
9f797adb
...
...
@@ -26,9 +26,13 @@ function terminals_y() = 18.50;
// tpow = power terminal
function tpow_x() = -30.25;
function tpow_y() = 14.50;
function tpow_sx() = 11.00;
function tpow_sy() = 11.50;
function tpow_sz() = 3.00; // TODO: measure!!
// function tpow_sx() = 11.00;
// function tpow_sy() = 11.50;
// function tpow_sz() = 3.00; // TODO: measure!!
tled_y = [18.5, 0, -18.5];
function tled_x() = 5.75 + 23;
function tled_y(i) = tled_y(i);
function sc_left_off() = 5.0; // left side screw holes offset from edge
...
...
@@ -74,8 +78,19 @@ module pcb3D(pcb_t=pcb_t()) {
// Solder()
// translate([tpow_x(), tpow_y(), pcb_t() - $E])
// cube([tpow_sx(), tpow_sy(), tpow_sz()], center=true);
translate([tpow_x(), tpow_y(), pcb_t() - $E])
// translate([tpow_x(), tpow_y(), pcb_t() - $E])
// terminal2();
translate([tpow_x(), tpow_y(), pcb_t()])
terminal2();
for (ty=tled_y)
translate([tled_x(), ty, pcb_t()])
rotate([0, 0, 180])
terminal3();
}
}
...
...
@@ -125,13 +140,12 @@ module terminal3() {
roundRect(t_l_sx, t3_l_sy, 1.337, center=true);
}
_ty = t3_sy * 1/
4
;
for (ty=[-_ty, _ty])
_ty = t3_sy * 1/
3
;
for (ty=[-_ty,
0,
_ty])
translate([-t3_sx/2, ty, t_h0/2])
rotate([0, -90, 0])
cylinder(d=3, h=8, center=true);
}
}
translate([0, 0, pcb_t()]) terminal3();
pcb3D();
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment