/* * * * Author: ntoff * License: AGPLv3 */ $(function() { function FanSliderPluginViewModel(parameters) { var self = this; self.printerstate = parameters[0]; self.loginstate = parameters[1]; self.control = parameters[2]; //default to 100% fan speed fanSpeed = ko.observable(100); //convert percentage into PWM fanPWM = ko.pureComputed(function () { return Math.round(fanSpeed() * 255 / 100); }); //set fan speed sendFanSpeed = function () { self.control.sendCustomCommand({ command: "M106 S" + fanPWM() }); }; //extra classes $("#control > div.jog-panel").eq(0).addClass("controls"); $("#control > div.jog-panel").eq(1).addClass("tools"); $("#control > div.jog-panel").eq(2).addClass("general"); //Only display the slider if TouchUI isn't active (sorry) if ($("#touch body").length ==0 ) { //add ID to buttons $("#control > div.general").find("button").eq(0).attr("id", "motors-off"); $("#control > div.general").find("button").eq(1).attr("id", "fan-on"); $("#control > div.general").find("button").eq(2).attr("id", "fan-off"); //remove original fan on/off buttons $("#fan-on").remove(); $("#fan-off").remove(); //add new fan controls $("#control > div.jog-panel.general").find("button").eq(0).before("\ \ \ \ "); } else { console.log("Fan Speed Slider: NOTICE! TouchUI is active, adding simplified control."); $("#control > div.jog-panel.general").after("\