Skip to content

Commit

Permalink
Change default position confirmation tolerance to 0.001.
Browse files Browse the repository at this point in the history
  • Loading branch information
FormerLurker committed Apr 6, 2018
1 parent a055e05 commit 179f009
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions octoprint_octolapse/data/settings_default.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 6000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -624,7 +624,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 6000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -655,7 +655,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 3000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": false
Expand Down Expand Up @@ -686,7 +686,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": true,
"z_hop_speed": 0,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "relative",
"auto_detect_position": true
Expand Down Expand Up @@ -717,7 +717,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 1000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -748,7 +748,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 6000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -779,7 +779,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 1000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -810,7 +810,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 7200,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -841,7 +841,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": false,
"z_hop_speed": 0,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down Expand Up @@ -872,7 +872,7 @@
"snapshot_command": "snap",
"override_octoprint_print_volume": true,
"z_hop_speed": 6000,
"printer_position_confirmation_tolerance": 0.01,
"printer_position_confirmation_tolerance": 0.001,
"units_default": "millimeters",
"xyz_axes_default_mode": "require-explicit",
"auto_detect_position": true
Expand Down
2 changes: 1 addition & 1 deletion octoprint_octolapse/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self, printer=None, name="New Printer", guid=None):
self.z_hop_speed = 6000
self.retract_speed = 4000
self.snapshot_command = "snap"
self.printer_position_confirmation_tolerance = 0.01
self.printer_position_confirmation_tolerance = 0.001
self.auto_detect_position = True
self.origin_x = None
self.origin_y = None
Expand Down

0 comments on commit 179f009

Please sign in to comment.