Skip to content

Commit 71f2ed6

Browse files
committed
fix touchz
1 parent 9d83e6e commit 71f2ed6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

Actions/actions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ def processAction(self, msg):
8989
elif msg["data"]["command"] == "defineZ0":
9090
if not self.data.actions.defineZ0():
9191
self.data.ui_queue1.put("Alert", "Alert", "Error with defining Z-Axis zero.")
92+
elif msg["data"]["command"] == "touchZ":
93+
if not self.touchZ():
94+
self.data.ui_queue1.put("Alert", "Alert", "Error with touching.")
9295
elif msg["data"]["command"] == "moveToDefault":
9396
if not self.moveToDefault():
9497
self.data.ui_queue1.put("Alert", "Alert", "Error with moving to default chain lengths")

DataStructures/data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Data:
3838
Version Updater
3939
'''
4040
lastChecked = -1
41-
pyInstallCurrentVersion = 0.9331
41+
pyInstallCurrentVersion = 0.9333
4242
pyInstallUpdateAvailable = False
4343
pyInstallUpdateBrowserUrl = ""
4444
pyInstallUpdateVersion = 0

0 commit comments

Comments
 (0)