Skip to content

Commit

Permalink
v1.0.383
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanderwalt committed Dec 2, 2024
1 parent ab6195f commit 2fb79f2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
v1.0.383:
- Added default servo values for Pen Up/Down for ACRO A1
v1.0.382:
- Updated Theme
- Updated SSL Certificates
Expand Down
11 changes: 10 additions & 1 deletion app/js/grbl-settings-defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ function selectMachine(type) {
$35: "5", //Spinde Min Value for RC Servo
$36: "10", //Spindle max Value for RC Servo
$44: "1", // Home X first
$45: "2", // Then Home Z
$45: "2", // Then Home Y
$100: "57.143", //X-axis steps per millimeter-1/16 step
$101: "57.143", //Y-axis steps per millimeter-1/16 step
$102: "57.143", //Z-axis steps per millimeter-1/16 step
Expand All @@ -479,6 +479,15 @@ function selectMachine(type) {
$131: "609.000", //Y-axis maximum travel, millimeters
$132: "50.000", //Z-axis maximum travel, millimeters
}
// Set Default Pen Up/Down values
penupval = 250
pendownval = 0
servo = {
up: penupval,
down: pendownval
}
localStorage.setItem("servo-calibration", JSON.stringify(servo));
// End default pen up/down
} else if (type == "minimill") {
// minimill
var customFirmware = false;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OpenBuildsCONTROL",
"version": "1.0.382",
"version": "1.0.383",
"license": "AGPL-3.0",
"description": "OpenBuildsCONTROL CNC Machine Host Software",
"author": "github.com/openbuilds <[email protected]>",
Expand Down

0 comments on commit 2fb79f2

Please sign in to comment.