Compare commits
2 Commits
f8e5968f30
...
513deb7a0a
Author | SHA1 | Date |
---|---|---|
|
513deb7a0a | |
|
2b24dc647c |
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy-app",
|
"name": "mcopy-app",
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"description": "GUI for the mcopy small gauge film optical printer platform",
|
"description": "GUI for the mcopy small gauge film optical printer platform",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"arduino": "file:app/lib/arduino",
|
"arduino": "file:app/lib/arduino",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcopy",
|
"name": "mcopy",
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"description": "Small gauge film optical printer platform",
|
"description": "Small gauge film optical printer platform",
|
||||||
"main": "build.js",
|
"main": "build.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "1.8.20",
|
"version": "1.8.22",
|
||||||
"ext_port": 1111,
|
"ext_port": 1111,
|
||||||
"profiles": {
|
"profiles": {
|
||||||
"mcopy": {
|
"mcopy": {
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
//
|
//
|
||||||
// JK lens assembly
|
// JK lens assembly
|
||||||
//
|
//
|
||||||
include <./common.scad>;
|
include <./common/common.scad>;
|
||||||
include <./bellows.scad>;
|
include <./bellows.scad>;
|
||||||
include <./knurledFinishLib_v2.scad>;
|
include <./knurledFinishLib_v2.scad>;
|
||||||
|
use <2020_profile.scad>;
|
||||||
|
|
||||||
PART = "";
|
PART = "";
|
||||||
|
|
||||||
|
@ -36,6 +37,16 @@ LinearMotionZ = 14;
|
||||||
XPosition = 0;
|
XPosition = 0;
|
||||||
ZPosition = 0;
|
ZPosition = 0;
|
||||||
|
|
||||||
|
RailSpacingX = 100;
|
||||||
|
RailEndX = RailSpacingX + 72;
|
||||||
|
LensFrameSpacingX = (RailEndX / 2) - (40 / 2);
|
||||||
|
|
||||||
|
module rail_debug (H = 175) {
|
||||||
|
color("lime") linear_extrude(height=H) {
|
||||||
|
2020_profile();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
module linearBearing (padD = 0, padH = 0) {
|
module linearBearing (padD = 0, padH = 0) {
|
||||||
difference () {
|
difference () {
|
||||||
cylinder(r = R(LinearBearingOuterDiameter + padD), h = LinearBearingHeight + padH, center = true, $fn = 100);
|
cylinder(r = R(LinearBearingOuterDiameter + padD), h = LinearBearingHeight + padH, center = true, $fn = 100);
|
||||||
|
@ -351,18 +362,22 @@ module debug () {
|
||||||
translate([-ZOffset/2, BackOffset, -((RodLength + 20)/2)+31]) lensAssemblyThreadedCollar();
|
translate([-ZOffset/2, BackOffset, -((RodLength + 20)/2)+31]) lensAssemblyThreadedCollar();
|
||||||
translate([ZOffset/2, BackOffset, 0]) linearMotionRod(RodLength);
|
translate([ZOffset/2, BackOffset, 0]) linearMotionRod(RodLength);
|
||||||
|
|
||||||
translate([0, BackOffset, -70]) lensAssemblyBaseZ();
|
//translate([0, BackOffset, -70]) lensAssemblyBaseZ();
|
||||||
|
|
||||||
translate([0, 130, 0]) rotate([90, 0, 0]) bellows_camera_board();
|
translate([0, 130, 0]) rotate([90, 0, 0]) bellows_camera_board();
|
||||||
translate([0, 130/2, 0]) color("blue") {
|
translate([0, 130/2, 0]) color("blue") {
|
||||||
difference () {
|
difference () {
|
||||||
cube([70, 130-10, 70], center = true);
|
cube([70, 130 - 10, 70], center = true);
|
||||||
cube([40, 130 + 1, 40], center = true);
|
cube([40, 130 + 1, 40], center = true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
translate([LensFrameSpacingX + 20, 15, -100]) rail_debug(200);
|
||||||
|
translate([-LensFrameSpacingX - 20, 15, -100]) rail_debug(200);
|
||||||
|
translate([-100, 35, 90]) rotate([0, 90, 0]) rail_debug(200);
|
||||||
}
|
}
|
||||||
|
|
||||||
PART = "lens_assembly_bellows_board_magnetic";
|
PART = "lens_assembly_bellows_board_magneticx";
|
||||||
|
|
||||||
if (PART == "lens_assembly_camera_bellows_board") {
|
if (PART == "lens_assembly_camera_bellows_board") {
|
||||||
bellows_camera_board();
|
bellows_camera_board();
|
||||||
|
|
|
@ -331,7 +331,7 @@ module projector () {
|
||||||
module debug () {
|
module debug () {
|
||||||
//panel();
|
//panel();
|
||||||
//NEMA17([0, KeyDistance / 2, -50]);
|
//NEMA17([0, KeyDistance / 2, -50]);
|
||||||
NEMA17([0, -KeyDistance / 2, -50]);
|
//NEMA17([0, -KeyDistance / 2, -50]);
|
||||||
//gate_key([0, KeyDistance / 2, -14], [0, 0, 45]);
|
//gate_key([0, KeyDistance / 2, -14], [0, 0, 45]);
|
||||||
//gate_key([0, -KeyDistance / 2, -14], [0, 0, 45]);
|
//gate_key([0, -KeyDistance / 2, -14], [0, 0, 45]);
|
||||||
|
|
||||||
|
@ -339,13 +339,13 @@ module debug () {
|
||||||
union () {
|
union () {
|
||||||
intersection () {
|
intersection () {
|
||||||
panel();
|
panel();
|
||||||
//translate([0, -50, 0]) cube([60, 100, 150], center = true);
|
translate([0, -50, 0]) cube([60, 100, 150], center = true);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
//translate([50, 0, 0]) rotate([0, 0, 45]) cube([100, 250, 150], center = true);
|
//translate([50, 0, 0]) rotate([0, 0, 45]) cube([100, 250, 150], center = true);
|
||||||
}
|
}
|
||||||
color("black") gate_key([0, -KeyDistance / 2, -13.5], [0, 0, 0]);
|
//color("black") gate_key([0, -KeyDistance / 2, -13.5], [0, 0, 0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
PART = "gate_keyx";
|
PART = "gate_keyx";
|
||||||
|
|
|
@ -8,6 +8,7 @@ FILES=(
|
||||||
cpc_connectors
|
cpc_connectors
|
||||||
mcopy_rails
|
mcopy_rails
|
||||||
mcopy_projector
|
mcopy_projector
|
||||||
|
mcopy_lens_assembly
|
||||||
)
|
)
|
||||||
|
|
||||||
PARALLEL=0
|
PARALLEL=0
|
||||||
|
|
Loading…
Reference in New Issue