on site work at MONO

This commit is contained in:
Matthew McWilliams 2023-07-01 16:34:07 -04:00
parent 2c21110b97
commit 6d379d284b
4 changed files with 11 additions and 8 deletions

2
app/package-lock.json generated
View File

@ -6,7 +6,7 @@
"packages": {
"": {
"name": "mcopy-app",
"version": "1.7.7",
"version": "1.7.21",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {

View File

@ -58,7 +58,7 @@ const char cmd_debug = 'd';
const char cmd_connect = 'i';
volatile char cmd_char = 'z';
const char cmd_mcopy_identifier = 'm';
const char cmd_proj_identifier = 'd'; //dual projector identifier
const char cmd_proj_identifier = 't'; //dual projector identifier
const int serialDelay = 5;

View File

@ -19,9 +19,9 @@
boolean debug_state = false;
const int proj_fwd_pin = 12;
const int proj_bwd_pin = 11;
const int proj_pin = 10;
const int proj_fwd_pin = 6;
const int proj_bwd_pin = 5;
const int proj_pin = 4;
const int proj_momentary = 60;
const int proj_time = 950; //secondary projector speed

View File

@ -260,7 +260,7 @@ module projector () {
}
PART = "panel";
PART = "panelx";
if (PART == "gate_key") {
gate_key();
@ -268,7 +268,10 @@ if (PART == "gate_key") {
rotate([180, 0, 0]) panel();
} else {
difference () {
debug();
translate([45-15, 0, 0]) cube([89, 200, 150], center = true);
intersection () {
panel();
translate([0, -50, 0]) cube([60, 100, 150], center = true);
}
translate([50, 0, 0]) rotate([0, 0, 45]) cube([100, 250, 150], center = true);
}
}