Compare commits

..

No commits in common. "dd4834de04ac1287436c65a0538b2612097e112b" and "de6f0d04958b0687393a5b3d7dc9679ba56f8f42" have entirely different histories.

18 changed files with 14519 additions and 200682 deletions

View File

@ -1,5 +1,5 @@
{
"version": "1.8.9",
"version": "1.8.4",
"ext_port": 1111,
"profiles": {
"mcopy": {

2
app/package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "mcopy-app",
"version": "1.8.9",
"version": "1.8.4",
"lockfileVersion": 2,
"requires": true,
"packages": {

View File

@ -1,6 +1,6 @@
{
"name": "mcopy-app",
"version": "1.8.9",
"version": "1.8.4",
"description": "GUI for the mcopy small gauge film optical printer platform",
"main": "main.js",
"scripts": {

View File

@ -1,5 +1,5 @@
{
"version": "1.8.9",
"version": "1.8.4",
"ext_port": 1111,
"profiles": {
"mcopy": {

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "mcopy",
"version": "1.8.9",
"version": "1.8.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "mcopy",
"version": "1.8.9",
"version": "1.8.4",
"license": "MIT",
"dependencies": {
"arduino": "file:app/lib/arduino",

View File

@ -1,6 +1,6 @@
{
"name": "mcopy",
"version": "1.8.9",
"version": "1.8.4",
"description": "Small gauge film optical printer platform",
"main": "build.js",
"directories": {

View File

@ -1,5 +1,5 @@
{
"version": "1.8.9",
"version": "1.8.4",
"ext_port": 1111,
"profiles": {
"mcopy": {

View File

@ -122,18 +122,18 @@ module bellows_board_magnetic(H = 3) {
}
}
PART = "lens_board";
PART = "bellows_lens_board";
if (!LIBRARY && PART == "camera_board") {
if (!LIBRARY && PART == "bellows_camera_board") {
bellows_camera_board();
} else if (!LIBRARY && PART == "camera_board_magnetic") {
} else if (!LIBRARY && PART == "bellows_camera_board_magnetic") {
bellows_camera_board(magnets = true);
} else if (!LIBRARY && PART == "camera_mount") {
camera_mount();
} else if (!LIBRARY && PART == "lens_board") {
} else if (!LIBRARY && PART == "bellows_lens_board") {
bellows_lens_board();
} else if (!LIBRARY && PART == "lens_board_magnetic") {
} else if (!LIBRARY && PART == "bellows_lens_board_magnetic") {
bellows_lens_board(magnets = true);
} else if (!LIBRARY && PART == "board_magnetic") {
} else if (!LIBRARY && PART == "bellows_board_magnetic") {
bellows_board_magnetic();
}

View File

@ -4,7 +4,7 @@
include <./common/common.scad>;
PART="9pin_socket";
PART="cpc_9pin_socket";
FN = 120;
@ -163,18 +163,14 @@ module debug () {
}
}
if (PART == "9pin_plug") {
if (PART == "cpc_9pin_plug") {
cpc_9pin_plug();
} else if (PART == "9pin_plug_collar") {
} else if (PART == "cpc_9pin_plug_collar") {
cpc_9pin_plug_collar();
} else if (PART == "9pin_socket") {
} else if (PART == "cpc_9pin_plug_back") {
cpc_9pin_plug_back();
} else if (PART == "cpc_9pin_socket") {
cpc_9pin_socket();
} else {
debug();
}
/*
else if (PART == "9pin_plug_back") {
cpc_9pin_plug_back();
}
*/

View File

@ -11,11 +11,10 @@ include <./common/common.scad>
include <./common/motors.scad>
include <./common/rods.scad>
RailSpacing = 160;
RailSpacing = 100;
ThreadedRodSpacing = 50;
RailEndX = RailSpacing + 40;
RailEndX = 140;
TNutVoid = 17;
BoltSpacingX = 110;
module rail_debug (H = 175) {
color("lime") linear_extrude(height=H) {
@ -108,8 +107,8 @@ module rail_end (pos = [0, 0, 0], rot = [90, 0, 0], Motors = true) {
translate([0, 0, 5]) cylinder(r = R(ThreadDiameter), h = 40, center = true, $fn = 50);
//mounting bolts
translate([BoltSpacingX / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
translate([-BoltSpacingX / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
translate([70 / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
translate([-70 / 2, 0, 40]) rotate([90, 0, 0]) cylinder(r = R(10), h = 150, center = true, $fn = 40);
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff