OctoprintKlipperPlugin/octoprint_klipper/static/js/klipper_leveling.js

79 lines
2.6 KiB
JavaScript
Raw Normal View History

2018-01-24 19:12:57 +03:00
$(function() {
function KlipperLevelingViewModel(parameters) {
var self = this;
self.settings = parameters[0];
self.loginState = parameters[1];
self.connectionState = parameters[2];
self.activePoint = ko.observable();
self.onStartup = function() {
self.activePoint(-1);
}
self.startLeveling = function() {
OctoPrint.control.sendGcode("G28")
2018-02-02 18:57:29 +03:00
self.moveToPoint(0);
2018-01-24 19:12:57 +03:00
}
self.stopLeveling = function() {
2018-02-02 18:57:29 +03:00
OctoPrint.control.sendGcode("G1 Z" +
2018-08-09 10:25:05 +03:00
(self.settings.settings.plugins.klipper.probe.height()*1 +
self.settings.settings.plugins.klipper.probe.lift()*1)
2018-02-02 18:57:29 +03:00
);
self.gotoHome();
}
self.gotoHome = function() {
OctoPrint.control.sendGcode("G28");
self.activePoint(-1);
2018-01-24 19:12:57 +03:00
}
self.nextPoint = function() {
2018-02-02 18:57:29 +03:00
self.moveToPoint(self.activePoint()+1);
2018-01-24 19:12:57 +03:00
}
self.previousPoint = function() {
2018-02-02 18:57:29 +03:00
self.moveToPoint(self.activePoint()-1);
}
self.jumpToPoint = function(item) {
self.moveToPoint(
2018-08-09 10:25:05 +03:00
self.settings.settings.plugins.klipper.probe.points().indexOf(item)
2018-02-02 18:57:29 +03:00
);
2018-01-24 19:12:57 +03:00
}
self.pointCount = function() {
2018-08-09 10:25:05 +03:00
return self.settings.settings.plugins.klipper.probe.points().length;
2018-01-24 19:12:57 +03:00
}
2018-02-02 18:57:29 +03:00
self.moveToPosition = function(x, y) {
OctoPrint.control.sendGcode(
2018-08-09 10:25:05 +03:00
"G1 Z" + (self.settings.settings.plugins.klipper.probe.height() * 1 +
self.settings.settings.plugins.klipper.probe.lift()*1) +
" F" + self.settings.settings.plugins.klipper.probe.speed_z()
);
OctoPrint.control.sendGcode(
2018-02-02 18:57:29 +03:00
"G1 X" + x + " Y" + y +
2018-08-09 10:25:05 +03:00
" F" + self.settings.settings.plugins.klipper.probe.speed_xy()
);
OctoPrint.control.sendGcode(
2018-08-09 10:25:05 +03:00
"G1 Z" + self.settings.settings.plugins.klipper.probe.height() +
" F" + self.settings.settings.plugins.klipper.probe.speed_z()
);
2018-01-24 19:12:57 +03:00
}
2018-02-02 18:57:29 +03:00
self.moveToPoint = function(index) {
2018-08-09 10:25:05 +03:00
var point = self.settings.settings.plugins.klipper.probe.points()[index];
2018-02-02 18:57:29 +03:00
self.moveToPosition(point.x(), point.y());
self.activePoint(index);
}
2018-01-24 19:12:57 +03:00
}
OCTOPRINT_VIEWMODELS.push({
construct: KlipperLevelingViewModel,
dependencies: ["settingsViewModel", "loginStateViewModel", "connectionViewModel"],
elements: ["#klipper_leveling_dialog"]
2018-01-24 19:12:57 +03:00
});
});