Skip to content

Commit

Permalink
Deployed d589b8e with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
3DCoded committed Dec 9, 2024
1 parent f151b0a commit 7f12fbe
Show file tree
Hide file tree
Showing 62 changed files with 3,555 additions and 82,380 deletions.
964 changes: 80 additions & 884 deletions 404.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions assets/css/calibration.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.hidden {
display: none;
}
7 changes: 7 additions & 0 deletions assets/css/kits.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
ul {
list-style-type: none;
}

.hidden {
display: none;
}
Binary file added assets/images/MMB_CAN_USB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions assets/javascript/calibration.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
document.addEventListener("DOMContentLoaded", function() {
const preGateToggle = document.getElementById('pre-gate-toggle');
const postGateToggle = document.getElementById('post-gate-toggle');
const sharedGateToggle = document.getElementById('shared-gate-toggle');
const encoderToggle = document.getElementById('encoder-toggle');
const extruderToggle = document.getElementById('extruder-toggle');
const toolheadToggle = document.getElementById('toolhead-toggle');

// Add event listeners to all checkboxes to toggle visibility
preGateToggle.addEventListener('change', function() {
document.getElementById('pre-gate').style.display = preGateToggle.checked ? 'block' : 'none';
});

postGateToggle.addEventListener('change', function() {
document.getElementById('post-gate').style.display = postGateToggle.checked ? 'block' : 'none';
});

sharedGateToggle.addEventListener('change', function() {
document.getElementById('shared-gate').style.display = sharedGateToggle.checked ? 'block' : 'none';
});

encoderToggle.addEventListener('change', function() {
document.getElementById('encoder').style.display = encoderToggle.checked ? 'block' : 'none';
});

extruderToggle.addEventListener('change', function() {
document.getElementById('extruder').style.display = extruderToggle.checked ? 'block' : 'none';
});

toolheadToggle.addEventListener('change', function() {
document.getElementById('toolhead').style.display = toolheadToggle.checked ? 'block' : 'none';
});
});
Binary file added assets/stls/4ysplitter.stl
Binary file not shown.
Binary file added assets/stls/enclosure/bottom-v6.stl
Binary file not shown.
Binary file added assets/stls/enclosure/top-v6.stl
Binary file not shown.
Loading

0 comments on commit 7f12fbe

Please sign in to comment.