Update lens assembly to start using a 2020 frame
This commit is contained in:
parent
f8e5968f30
commit
2b24dc647c
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy-app",
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy-app",
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"description": "GUI for the mcopy small gauge film optical printer platform",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "mcopy",
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"arduino": "file:app/lib/arduino",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "mcopy",
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"description": "Small gauge film optical printer platform",
|
||||
"main": "build.js",
|
||||
"directories": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version": "1.8.20",
|
||||
"version": "1.8.21",
|
||||
"ext_port": 1111,
|
||||
"profiles": {
|
||||
"mcopy": {
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
//
|
||||
// JK lens assembly
|
||||
//
|
||||
include <./common.scad>;
|
||||
include <./common/common.scad>;
|
||||
include <./bellows.scad>;
|
||||
include <./knurledFinishLib_v2.scad>;
|
||||
use <2020_profile.scad>;
|
||||
|
||||
PART = "";
|
||||
|
||||
|
@ -36,6 +37,16 @@ LinearMotionZ = 14;
|
|||
XPosition = 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) {
|
||||
difference () {
|
||||
cylinder(r = R(LinearBearingOuterDiameter + padD), h = LinearBearingHeight + padH, center = true, $fn = 100);
|
||||
|
@ -351,7 +362,7 @@ module debug () {
|
|||
translate([-ZOffset/2, BackOffset, -((RodLength + 20)/2)+31]) lensAssemblyThreadedCollar();
|
||||
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/2, 0]) color("blue") {
|
||||
|
@ -360,9 +371,13 @@ module debug () {
|
|||
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") {
|
||||
bellows_camera_board();
|
||||
|
|
|
@ -8,6 +8,7 @@ FILES=(
|
|||
cpc_connectors
|
||||
mcopy_rails
|
||||
mcopy_projector
|
||||
mcopy_lens_assembly
|
||||
)
|
||||
|
||||
PARALLEL=0
|
||||
|
|
Loading…
Reference in New Issue