The Gcode widget shows you the Gcode loaded into your workspace, lets you send it to the serial port, get back per line status, see an estimated length of time to execute the Gcode, navigate to the XYZ position of a specific line, and much more.
All ChiliPeppr widgets/elements are defined using cpdefine() which is a method that mimics require.js. Each defined object must have a unique ID so it does not conflict with other ChiliPeppr widgets.
Item | Value |
---|---|
ID | com-chilipeppr-widget-gcode |
Name | Widget / Gcode v8 |
Description | The Gcode widget shows you the Gcode loaded into your workspace, lets you send it to the serial port, get back per line status, see an estimated length of time to execute the Gcode, navigate to the XYZ position of a specific line, and much more. |
chilipeppr.load() URL | http://raw.githubusercontent.com/chilipeppr/widget-gcodelist/master/auto-generated-widget.html |
Edit URL | http://ide.c9.io/chilipeppr/widget-gcodelist |
Github URL | http://github.com/chilipeppr/widget-gcodelist |
Test URL | https://preview.c9users.io/chilipeppr/widget-gcodelist/widget.html |
You can use the code below as a starting point for instantiating this widget inside a workspace or from another widget. The key is that you need to load your widget inlined into a div so the DOM can parse your HTML, CSS, and Javascript. Then you use cprequire() to find your widget's Javascript and get back the instance of it.
// Inject new div to contain widget or use an existing div with an ID
$("body").append('<' + 'div id="myDivWidgetGcode"><' + '/div>');
chilipeppr.load(
"#myDivWidgetGcode",
"http://raw.githubusercontent.com/chilipeppr/widget-gcodelist/master/auto-generated-widget.html",
function() {
// Callback after widget loaded into #myDivWidgetGcode
// Now use require.js to get reference to instantiated widget
cprequire(
["inline:com-chilipeppr-widget-gcode"], // the id you gave your widget
function(myObjWidgetGcode) {
// Callback that is passed reference to the newly loaded widget
console.log("Widget / Gcode v8 just got loaded.", myObjWidgetGcode);
myObjWidgetGcode.init();
}
);
}
);
This widget/element publishes the following signals. These signals are owned by this widget/element and are published to all objects inside the ChiliPeppr environment that listen to them via the chilipeppr.subscribe(signal, callback) method. To better understand how ChiliPeppr's subscribe() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/
Signal | Description |
---|---|
/com-chilipeppr-widget-gcode/onplay | When user hits play button. This is fired before this widget starts playing to give subscribers a chance to cancel the play, or delay it, or interrupt it. Payload contains {gcodeLines:(array of gcode lines)}. For example, the Cayenn widget listens for this signal and interrupts you if there are Cayenn commands in your Gcode so it can send a ResetCtr to all Cayenn devices. The Cayenn widget needs to send all the resets before ChiliPeppr is allowed to play to make sure everything is in sync. Return a false from your subscribe callback to cancel the play. |
/com-chilipeppr-widget-gcode/onpause | When user hits pause button. The payload is a true/false boolean indicating whether it is a pause or an unpause. This event also fires if a pause is triggered for a different reason like from an M6 command. In that case the 2nd paramater of the payload contains a string of "m6". |
/com-chilipeppr-widget-gcode/onstop | When user hits stop button |
/com-chilipeppr-widget-gcode/resize | When we resize in case any other widget wants to listen to that so it can resize itself. |
/com-chilipeppr-widget-gcode/done | When we are done sending all gcode. We send a payload of how many lines sent and time for job. |
/com-chilipeppr-widget-gcode/recvGcode | We publish this signal after you send in a /requestGcode signal. We will send you the Gcode in this widget including metadata. The payload contains { lines: [(your lines as a 0-based array)], metadata: [{isSent: bool, isQueued: bool, isWritten: bool, isComplete: bool}] }. The lines are a 0-based array so if you are trying to line them up with the numbers in the Gcode widget, line 1 corresponds to lines[0] in the array. The metadata is an array that matches the lines array but contains data on the send state of each line. You are being sent an exact reference to that array so if you modify it, you are modifying the actual Gcode and Metadata in this widget. You have been warned. |
/com-chilipeppr-widget-gcode/onChiliPepprPause | This event is published during the play operation when the chilipeppr_pause string is found inside the Gcode. You can place a chilipeppr_pause string anywhere in the Gcode inside a comment and it will tell ChiliPeppr to pause sending when it hits that line. The pause acts much like the M6 tool change pause but it is a pause just for ChiliPeppr to interpret and not the CNC controller. This technique was implemented for synchronizing a secondary microcontroller that could trigger an out-of-band event like a laser solderer, or a solder paste dispenser, or some other control that had to trigger at a specific Gcode line. This specific event is not very helpful to subscribe to because it does not have as much meaning as onChiliPepprPauseOnComplete or onChiliPepprPauseOnExecute. Those two events are triggered when the CNC controller actually gets to the specifically paused line and that is where you would synchronize from. The onChiliPepprPauseOnComplete is triggered by all CNC controllers but is not a very accurate event as most controllers have a planner buffer which means this line is not really what is being executed but will be executed in the very near future at an unknown time. The onChiliPepprPauseOnExecute is a highly accurate event currently only available from TinyG that tells you the CNC controller is exactly executing this line at this moment. A sample macro is available that shows how to use the onChiliPepprPause events. |
/com-chilipeppr-widget-gcode/onChiliPepprPauseOnExecute | This event is published when the line that contained the chilipeppr_pause command inside a comment has actually executed in the CNC controller. This is currently supported by TinyG. Grbl does not support this. The payload of the event includes the line number and the line of gcode that was just executed like { line: 8, gcode: "(chilipeppr_pause solder drop 4)" } |
/com-chilipeppr-widget-gcode/onChiliPepprPauseOnComplete | This event is published when the line that contained the chilipeppr_pause command inside a comment has been actually sent to the CNC controller. If your controller supports onExecute events then it is recommended you use onChiliPepprPauseOnExecute instead because it is much more accurate. To help explain the difference between onChiliPepprPauseOnExecute and onChiliPepprPauseOnComplete, for the onChiliPepprPauseOnComplete event if 1000 lines were buffered to SPJS and this is the 1000th line that this event will only trigger as the 1000th line is dished up to the CNC controller. This gives an event that can be pivoted off of. If the CNC controller has a planner buffer that can hold around 8 moves, you will get this event only when this line of gcode enters the planner buffer. So you are getting the event 8 moves ahead. To make this work in the real world you should likely pause by a length of time to ensure all commands are done or issue a double check command to your CNC controller that sends you back a response where you can ensure the controller is in the correct state. The payload of the event includes the line number and the line of gcode that was just completed like { line: 8, gcode: "(chilipeppr_pause solder drop 4)" } |
This widget/element subscribes to the following signals. These signals are owned by this widget/element. Other objects inside the ChiliPeppr environment can publish to these signals via the chilipeppr.publish(signal, data) method. To better understand how ChiliPeppr's publish() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/
Signal | Description |
---|---|
/com-chilipeppr-widget-gcode/requestGcode | Send in this signal and we will publish back out a /recvGcode signal. See /recvGcode for further info. |
/com-chilipeppr-widget-gcode/stop | Send in this signal to stop the gcode playing. Equivalent to hitting the stop button. |
/com-chilipeppr-widget-gcode/play | Send in this signal to play the gcode. Equivalent to hitting the play button. |
/com-chilipeppr-widget-gcode/pause | Send in this signal to pause/unpause the gcode. Equivalent to hitting the pause button. |
/com-chilipeppr-widget-gcode/jumpToLine | Send in an integer of what line to jump to in the Gcode widget. The index you send it should match what visually shows in the Gcode widget, i.e. line 1 should be sent as a 1 (even though the backing array is index 0). |
This widget/element publishes to the following signals that are owned by other objects. To better understand how ChiliPeppr's subscribe() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/
Signal | Description |
---|---|
/com-chilipeppr-widget-gcode/com-chilipeppr-widget-3dviewer/gcodeline | When a user clicks a line of gcode. We'll send the gcode and the line number so the subscriber can sync to what we're sending, i.e. a 3D viewer that wants to hilite the line representing this command. The format of the signal data is something like {line: 12, gcode: "G1 F300.0 Z0.0"}. |
/com-chilipeppr-widget-gcode/com-chilipeppr-elem-flashmsg/flashmsg | Send a flash message on certain events. In particular, we send a flash message when a comment line is hit. We also send a flash message when the gcode is done sending. |
This widget/element publishes to the following signals that are owned by other objects. To better understand how ChiliPeppr's publish() method works see amplify.js's documentation at http://amplifyjs.com/api/pubsub/
Signal | Description |
---|---|
/com-chilipeppr-widget-gcode/com-chilipeppr-elem-dragdrop/ondropped | We watch for a drag drop event of the Gcode file. The payload of the signal contains the localStorage object which is just the string representing the entire Gcode file. |
/com-chilipeppr-widget-gcode/com-chilipeppr-interface-cnccontroller/plannerpause | We need to pause when planner tells us. |
/com-chilipeppr-widget-gcode/com-chilipeppr-interface-cnccontroller/plannerresume | We need to resume when planner tells us. |
/com-chilipeppr-widget-gcode/com-chilipeppr-interface-cnccontroller/feedhold | We need to place a manual pause if we see the e-stop hit. That way user can start where they left off. |
/com-chilipeppr-widget-gcode/com-chilipeppr-interface-cnccontroller/onExecute | This signal is sent to us by the CNC controller widget. The payload looks like { line: 234 }. It is ONLY sent if the CNC controller widget is able to determine an executed state. Please refer to your CNC controller's publish documenation to determine if this signal will be published and thus whether this Gcode widget will see these events. |
The table below shows, in order, the methods and properties inside the widget/element.
Method / Property | Type | Description | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | string | "com-chilipeppr-widget-gcode" | |||||||||||||||||||||
url | string | "http://raw.githubusercontent.com/chilipeppr/widget-gcodelist/master/auto-generated-widget.html" | |||||||||||||||||||||
fiddleurl | string | "http://ide.c9.io/chilipeppr/widget-gcodelist" | |||||||||||||||||||||
githuburl | string | "http://github.com/chilipeppr/widget-gcodelist" | |||||||||||||||||||||
testurl | string | "http://widget-gcodelist-chilipeppr.c9users.io/widget.html" | |||||||||||||||||||||
name | string | "Widget / Gcode v8" | |||||||||||||||||||||
desc | string | "The Gcode widget shows you the Gcode loaded into your workspace, lets you send it to the serial port, get back per line status, see an estimated length of time to execute the Gcode, navigate to the XYZ position of a specific line, and much more." | |||||||||||||||||||||
publish | object | Please see docs above. | |||||||||||||||||||||
subscribe | object | Please see docs above. | |||||||||||||||||||||
foreignSubscribe | object | Please see docs above. | |||||||||||||||||||||
foreignPublish | object | Please see docs above. | |||||||||||||||||||||
fileLines | object | ||||||||||||||||||||||
metaLines | object | ||||||||||||||||||||||
metaObj | object | ||||||||||||||||||||||
linesComplete | object | ||||||||||||||||||||||
linesToShow | number | ||||||||||||||||||||||
linesToShowMax | number | ||||||||||||||||||||||
delayPerLine | number | ||||||||||||||||||||||
lineNumbersOnByDefault | boolean | ||||||||||||||||||||||
isDirtyUnits | boolean | ||||||||||||||||||||||
init | function | function (settings) | |||||||||||||||||||||
setupSecondaryButtons | function | function () Configure the "Feed Rate Override" button and the "Tool Changes" pulldown |
|||||||||||||||||||||
onToggleShowFeedRateOverride | function | function () | |||||||||||||||||||||
toolChanges | object | This method scans the Gcode for tool changes and then populates the pulldown menu so you can easily jump to the changes in the file and continue where you left off. | |||||||||||||||||||||
toolChangesKeys | object | ||||||||||||||||||||||
toolComments | object | ||||||||||||||||||||||
setupToolChanges | function | function () | |||||||||||||||||||||
onToolChangesSelectMenu | function | function (data) Called when user clicks a Tool Changes menu item. They want to jump to that line. |
|||||||||||||||||||||
onAfterGcodeFileLoaded | function | function () This method is called after the Gcode file is loaded so you can do some post-processing. |
|||||||||||||||||||||
setupJumpToLine | function | function () | |||||||||||||||||||||
onJumpToLine | function | function (evt) | |||||||||||||||||||||
getEstimates | function | function () | |||||||||||||||||||||
setupStatusSteps | function | function () | |||||||||||||||||||||
setupPlayPauseStopPubSub | function | function () | |||||||||||||||||||||
setupSendGcodePubSub | function | function () | |||||||||||||||||||||
publishGcode | function | function () | |||||||||||||||||||||
options | object | ||||||||||||||||||||||
setupOptionsModal | function | function () | |||||||||||||||||||||
saveOptionsModal | function | function () | |||||||||||||||||||||
showOptionsModal | function | function () | |||||||||||||||||||||
hideOptionsModal | function | function () | |||||||||||||||||||||
setupToolChangeModal | function | function () | |||||||||||||||||||||
isInToolChangeMode | boolean | ||||||||||||||||||||||
toolChangeRepositionCmd | object | ||||||||||||||||||||||
toolChangeCmd | object | ||||||||||||||||||||||
showToolChangeModal | function | function (linegcode, source) | |||||||||||||||||||||
hideToolChangeModal | function | function () | |||||||||||||||||||||
hideToolChangeDiv | function | function (wasPaused) | |||||||||||||||||||||
showUOMModal | function | function (txt, info, skipLocalStore) | |||||||||||||||||||||
hideUOMModal | function | function () | |||||||||||||||||||||
setUOM | function | function (txt, info, skipLocalStore, units) | |||||||||||||||||||||
getCoordFromControllerRecvCallback | object | ||||||||||||||||||||||
getCoordFromController | function | function (callback) | |||||||||||||||||||||
getCoordFromControllerRecv | function | function (coords) | |||||||||||||||||||||
getMotorConfigCallback | function | function (data) | |||||||||||||||||||||
getXyzCoordsForLineRecv3dObjCallback | object | ||||||||||||||||||||||
getXyzCoordsForLineRecv3dObjLine | object | ||||||||||||||||||||||
obj3d | object | ||||||||||||||||||||||
getXyzCoordsForLine | function | function (line, callback) | |||||||||||||||||||||
getXyzCoordsForLineRecv3dObj | function | function (obj3d) | |||||||||||||||||||||
btnSetup | function | function () This method is called after the Gcode file is loaded so you can do some post-processing. / onAfterGcodeFileLoaded: function() { this.setupToolChanges(); }, setupJumpToLine: function() { $('#com-chilipeppr-widget-gcode-jumptoline').click(this.onJumpToLine.bind(this)); }, onJumpToLine: function(evt) { console.log("got onJumpToLine. evt:", evt); console.log("this.lastLineMarkedExecuted:", this.lastLineMarkedExecuted); var lastLine = ""; if (this.lastLineMarkedExecuted && this.lastLineMarkedExecuted > 0) lastLine = this.lastLineMarkedExecuted; var line = prompt("Please enter the line number to jump to.", lastLine); var lineNum = parseInt(line); if (lineNum > 0) chilipeppr.publish("/com-chilipeppr-widget-gcode/jumpToLine", lineNum); else chilipeppr.publish("/com-chilipeppr-elem-flashmsg/flashmsg", "Error on Line Jump", "We had a problem parsing the line number you gave us.", 1000, true); }, getEstimates: function() { var that = this; this.get3dObj(function() { // when we get this callback, we should have a 3dobj console.log("getEstimates got obj3d:", this.obj3d); if (this.obj3d && this.obj3d.userData && this.obj3d.userData.lines) { var lastLine = this.obj3d.userData.lines[this.obj3d.userData.lines.length - 1]; if ('p2' in lastLine && 'timeMinsSum' in lastLine.p2) { console.log("we got a timeMinsSum:", lastLine.p2.timeMinsSum); var estDurMins = lastLine.p2.timeMinsSum; var str = this.toHHMMSS(estDurMins * 60); // expect seconds $('#com-chilipeppr-widget-gcodeviewer #gcode-time-est').text(str); } } }); }, setupStatusSteps: function() { var html = " Your Gcode moves through 5 steps from ChiliPeppr all the way through execution." +
"" +
"" +
"" +
"" +
"" +
"" +
"" +
" ";
}, setupSendGcodePubSub: function() { chilipeppr.subscribe("/" + this.id + "/requestGcode", this, this.publishGcode); }, publishGcode: function() { var gcode = { lines: this.fileLines, metadata: this.metaLines } chilipeppr.publish("/" + this.id + "/recvGcode", gcode); }, // options: stores the cookie settings for the user // example: {whenPlay: "serial", perRow: "3d", perRow3dType: "goto"} // it is set during the setupOptionsModal() options: null, setupOptionsModal: function() { console.log("setupOptionsModal"); // read vals from cookies var options = $.cookie('com-chilipeppr-widget-gcode-options'); if (true && options) { options = $.parseJSON(options); console.log("just evaled options: ", options); if (!('removeemptylines' in options)) options.removeemptylines = true; // only addlinenumbs by default if workspace asked us to if (this.lineNumbersOnByDefault) { if (!('addlinenums' in options)) options.addlinenums = true; } // Default new options for backwards compatibility if (!('sendOnM6' in options)) { options.sendOnM6 = ""; } if (!('sendOffM6' in options)) { options.sendOffM6 = ""; } if (!('probeCmd' in options)) { options.probeCmd = "G28.2 Z0"; } } else { options = {whenPlay: "serial", perRow: "3d", perRow3dType: "goto", delayPerLine: this.delayPerLine, pauseOnM6: true, preUpload: 'none', multiLineMode: 'yes', multiLines: 50, ppsOnPlayFlush: false, ppsOnStopFeedhold: false, ppsOnPauseFeedhold: false, ppsOnUnpauseResume: false, removeemptylines: true, addlinenums: true, sendOnM6: "", sendOffM6: "", probeCmd: "G28.2 Z0"}; } this.options = options; console.log("options:", options); // setup the correct radio buttons in dialog if (this.options.whenPlay == "serial") if (this.options.pauseOnM6) { if (this.options.preUpload) { var opt = ["none", "100", "1000", "10000", "20000"]; var that = this; opt.forEach(function(item,indx) { console.log("indx:", indx, "item:", item, "preUpload:", that.options.preUpload); if (that.options.preUpload == item) { if (this.options.multiLineMode) { if (this.options.multiLineMode == "yes") { // setup play/pause/stop options if (this.options.ppsOnPlayFlush) // setup delay per line if (this.options.delayPerLine) { this.delayPerLine = parseInt(this.options.delayPerLine); $('#com-chilipeppr-widget-gcode-option-delayPerLine').val(this.delayPerLine); } if (this.options.removeemptylines) { // setup "save changes" button var that = this; $("#com-chilipeppr-widget-gcode-modal .optionsbtnsave").click(function(evt) { console.log("Got save changes on gcode options dialog. evt:", evt); that.saveOptionsModal(); that.hideOptionsModal(); }); // also, if ANYTHING is clicked, just go ahead and save all options // not the best place, but since this is reading the options settings, might // as well decide whether to show body here or not if (!this.options.showBody) { that.hideBody(); } // attach event to onhide $('#com-chilipeppr-widget-gcode-modal').on('hidden.bs.modal', function () { // publish flash msgs that changes saved. Allow immediate dismiss. // do with delay to perform after modal hide animation setTimeout(function() { chilipeppr.publish("/com-chilipeppr-elem-flashmsg/flashmsg", "Options Saved", "Gcode Widget Options Saved", 1000, true); }, 10); }); }, saveOptionsModal: function() { var that = this; console.log("saveOptionsModal"); var whenPlay, perRow, perRow3dType, delayPerLine, pauseOnM6, sendOnM6, sendOffM6, probeCmd, showBody, preUpload, multiLineMode, multiLines, ppsOnPlayFlush, ppsOnStopFeedhold, ppsOnPauseFeedhold, ppsOnUnpauseResume, removeemptylines, addlinenums; if ($('#com-chilipeppr-widget-gcode-option-whenplay-serial').is(':checked')) whenPlay = "serial"; else if ($('#com-chilipeppr-widget-gcode-option-whenplay-3d').is(':checked')) whenPlay = "3d"; if ($('#com-chilipeppr-widget-gcode-option-perrow-serial').is(':checked')) perRow = "serial"; else if ($('#com-chilipeppr-widget-gcode-option-perrow-3d').is(':checked')) perRow = "3d"; if ($('#com-chilipeppr-widget-gcode-option-perrow-3d-goto').is(':checked')) perRow3dType = "goto"; else if ($('#com-chilipeppr-widget-gcode-option-perrow-3d-anim').is(':checked')) perRow3dType = "anim"; if ( if ($('#com-chilipeppr-widget-gcode-option-removeemptylines').is(':checked')) removeemptylines = true; else removeemptylines = false; if ($('#com-chilipeppr-widget-gcode-option-addlinenums').is(':checked')) addlinenums = true; else addlinenums = false; // on play/pause/stop ppsOnPlayFlush = ppsOnStopFeedhold = ppsOnPauseFeedhold = ppsOnUnpauseResume = false; if ($('#com-chilipeppr-widget-gcode-option-ppsOnPlayFlush').is(':checked')) ppsOnPlayFlush = true; if ($('#com-chilipeppr-widget-gcode-option-ppsOnStopFeedhold').is(':checked')) ppsOnStopFeedhold = true; if ($('#com-chilipeppr-widget-gcode-option-ppsOnPauseFeedhold').is(':checked')) ppsOnPauseFeedhold = true; if ($('#com-chilipeppr-widget-gcode-option-ppsOnUnpauseResume').is(':checked')) ppsOnUnpauseResume = true; // pre-Upload preUpload = $("#com-chilipeppr-widget-gcode-modal input:radio[name ='grpUpload']:checked").val(); // multi line mode multiLineMode = $("#com-chilipeppr-widget-gcode-modal input:radio[name ='grpMultiLineMode']:checked").val(); multiLines = parseInt($('#com-chilipeppr-widget-gcode-option-multiline').val()); if (multiLines < 1) { multiLines = 1; } this.isInMultiLineMode = multiLineMode == "yes" ? true : false; that.multiLines = multiLines; // delay per line that.delayPerLine = parseInt($('#com-chilipeppr-widget-gcode-option-delayPerLine').val()); // show body showBody = ! ($('#com-chilipeppr-widget-gcode-body-2col').hasClass('hidden')); var options = { whenPlay: whenPlay, perRow: perRow, perRow3dType: perRow3dType, delayPerLine: that.delayPerLine, pauseOnM6: pauseOnM6, sendOnM6: sendOnM6, sendOffM6: sendOffM6, probeCmd: probeCmd, showBody: showBody, preUpload: preUpload, multiLineMode: multiLineMode, multiLines: multiLines, ppsOnPlayFlush: ppsOnPlayFlush, ppsOnStopFeedhold: ppsOnStopFeedhold, ppsOnPauseFeedhold: ppsOnPauseFeedhold, ppsOnUnpauseResume: ppsOnUnpauseResume, removeemptylines: removeemptylines, addlinenums: addlinenums }; var optionsStr = JSON.stringify(options); console.log("saving options:", options, "json.stringify:", optionsStr); // store cookie $.cookie('com-chilipeppr-widget-gcode-options', optionsStr, { expires: 365 * 10, path: '/' }); that.options = options; // publish flash msgs that changes saved. Allow immediate dismiss. chilipeppr.publish("/com-chilipeppr-elem-flashmsg/flashmsg", "Options Saved", "Gcode Widget Options Saved", 1000, true); }, showOptionsModal: function() { // attach to buttons in tool change div // '/com-chilipeppr-interface-cnccontroller/energizeMotors' // close btn $('.com-chilipeppr-widget-gcode-toolchange .close').click(this.hideToolChangeDiv.bind(this, false)); }, isInToolChangeMode: false, // track whether we're showing tool change div toolChangeRepositionCmd: null, // gcode to reposition to prior location before tool change (in case they jog) toolChangeCmd: null, // G43 command to change tool length offset showToolChangeModal: function(linegcode, source) { var toolNumber = linegcode.match(/T\d+/ig)[0] console.log("Switching to tool ",toolNumber); if (!toolNumber) { toolNumber = "Unknown Tool"; this.toolChangeCmd = "G49"; } else { this.toolChangeCmd = "G43 " + toolNumber.replace("T","H"); } if ( if (false) $('#com-chilipeppr-widget-gcode-toolchange-debug').text("Source: " +source); $('#com-chilipeppr-widget-gcode-toolchange-modal').modal('show'); // setup div in main widget for when modal dismisses this.isInToolChangeMode = true; //gcode-short-mode // get active coords system and last position var line = this.currentLine; this.getXyzCoordsForLine(line, function(pos) { console.log("getXyzCoordsForLine returned pos ", pos); this.getCoordFromController(function(coords) { console.log("getCoordFromController returned coords ", coords); // now assemble the reposition command if (coords.coord) { this.toolChangeRepositionCmd = coords.coord; } else { this.toolChangeRepositionCmd = ""; } this.toolChangeRepositionCmd = this.toolChangeRepositionCmd + " G0 X" + pos.x + " Y" + pos.y + " Z" + pos.z; // Send gcode if defined var sendOnM6 = $('#com-chilipeppr-widget-gcode-option-sendonM6').val(); if (sendOnM6) { console.log("SendOnM6: ",sendOnM6); chilipeppr.publish("/com-chilipeppr-widget-serialport/send", sendOnM6 + '\n'); } }); }); // get the current motor config, when we get callback, setup the "set motors to prev setting" btn }, hideToolChangeModal: function() { if (wasPaused) { // Send gcode if defined // @todo Should NOT do this if we stopped rather than paused var sendOffM6 = $('#com-chilipeppr-widget-gcode-option-sendoffM6').val(); if (sendOffM6) { console.log("SendOffM6: ",sendOffM6); chilipeppr.publish("/com-chilipeppr-widget-serialport/send", sendOffM6 + '\n'); } } chilipeppr.subscribe("/com-chilipeppr-interface-cnccontroller/coords", this, this.getCoordFromControllerRecv); chilipeppr.publish("/com-chilipeppr-interface-cnccontroller/requestCoords", ""); }, getCoordFromControllerRecv: function(coords) { // unsub so we don't get anymore callbacks on this chilipeppr.unsubscribe("/com-chilipeppr-widget-cnccontroller/coords", this.getCoordFromControllerRecv); if (this.getCoordFromControllerRecvCallback) { // call the callback and then null it so we only call it once console.log("getCoordFromControllerRecv ", coords); this.getCoordFromControllerRecvCallback(coords); this.getCoordFromControllerRecvCallback = null; } else { console.log("GetCoordFromControllerRecv called with null callback... shouldn't happen") } }, getMotorConfigCallback: function(data) { }, getXyzCoordsForLineRecv3dObjCallback: null, getXyzCoordsForLineRecv3dObjLine: null, obj3d: null, getXyzCoordsForLine: function(line, callback) { console.log("getXyzCoordsForLine. line:", line); this.getXyzCoordsForLineRecv3dObjLine = line; this.getXyzCoordsForLineRecv3dObjCallback = callback; chilipeppr.subscribe("/com-chilipeppr-widget-3dviewer/recv3dObject", this, this.getXyzCoordsForLineRecv3dObj); chilipeppr.publish("/com-chilipeppr-widget-3dviewer/request3dObject", ""); }, getXyzCoordsForLineRecv3dObj: function(obj3d) { this.obj3d = obj3d; var x,y,z; var indx = this.getXyzCoordsForLineRecv3dObjLine - 1; x = obj3d.userData.lines[indx].p2.x; y = obj3d.userData.lines[indx].p2.y; z = obj3d.userData.lines[indx].p2.z; // unsub so we don't get anymore callbacks on this chilipeppr.unsubscribe("/com-chilipeppr-widget-3dviewer/recv3dObject", this.getXyzCoordsForLineRecv3dObj); this.getXyzCoordsForLineRecv3dObjCallback({index: indx, x: x, y: y, z: z }); }, /* initControllerSpecific: function(controllerId) { // This is the init section specific to a controller, that way we can support different controllers // in the future like GrblShield, etc. if (controllerId == "tinyg" || controllerId == null) { // subscribe to the TinyG plannerresume/plannerpause signals so we know when to slow // down on our sending } else { console.error("Being asked to init controller we have no code for."); } }, |
|||||||||||||||||||||
onFeedhold | function | function () | |||||||||||||||||||||
pauseBtnIcon | object | ||||||||||||||||||||||
onPlannerPause | function | function () | |||||||||||||||||||||
onPlannerResume | function | function () | |||||||||||||||||||||
isBodyShowing | boolean | ||||||||||||||||||||||
showBody | function | function (evt) | |||||||||||||||||||||
hideBody | function | function (evt) | |||||||||||||||||||||
forkSetup | function | function () | |||||||||||||||||||||
setupResizeable | function | function () | |||||||||||||||||||||
setupFeedrateAdjust | function | function () | |||||||||||||||||||||
feedrateDisable | function | function () | |||||||||||||||||||||
feedrateEnable | function | function () | |||||||||||||||||||||
feedrateUp | function | function () | |||||||||||||||||||||
feedrateDown | function | function () | |||||||||||||||||||||
feedrateReset | function | function () | |||||||||||||||||||||
feedrateAdjust | function | function () | |||||||||||||||||||||
feedrateUpdateDom | function | function () | |||||||||||||||||||||
onRecv3dObjectPerRowTd | object | ||||||||||||||||||||||
isShowingCoords | boolean | ||||||||||||||||||||||
isInsideCoords | boolean | ||||||||||||||||||||||
onRecv3dObjectPerRow | function | function (obj3d) | |||||||||||||||||||||
setNewStartPosition | function | function (indx, tr) | |||||||||||||||||||||
showXyzCoordsForRow | function | function (td) | |||||||||||||||||||||
setupRowTrigger | function | function () | |||||||||||||||||||||
timeStart | object | ||||||||||||||||||||||
timeEnd | object | ||||||||||||||||||||||
isPlayStep | boolean | ||||||||||||||||||||||
isPlaying | boolean | ||||||||||||||||||||||
isPaused | boolean | ||||||||||||||||||||||
isPausedByPlanner | boolean | ||||||||||||||||||||||
preUploadRemainder | number | ||||||||||||||||||||||
currentLine | object | ||||||||||||||||||||||
onPauseByPlanner | function | function (event) | |||||||||||||||||||||
onStepBack | function | function (evt) | |||||||||||||||||||||
onStepFwd | function | function (evt) | |||||||||||||||||||||
onPause | function | function (event, isFromM6, isFromCpPause) | |||||||||||||||||||||
resetMetaDataQueueWriteComplete | function | function (indexToStartAfter) | |||||||||||||||||||||
onStop | function | function (event) | |||||||||||||||||||||
onPlay | function | function (event) The onPlay is called from the Play button (or other mechanism) and as of 1/2/17 it now fires off the /onPlay pubsub so that a Play can get interrupted. It then listens to it's own /onPlay publish event at the lowest priority so that it can play as the last step in the pubsub chain. This gives other widgets a chance to interrupt the play event. |
|||||||||||||||||||||
isResetMetaBeforePlay | boolean | ||||||||||||||||||||||
isJobDonePubSubSent | boolean | ||||||||||||||||||||||
onPlayAfter | function | function (event) This is now called from pubsub, which means we publish our own /onPlay event when user hits button and then listen for the callback so that other widgets can interrupt the /onPlay if they have to. We get called last because we subscribe at the lowest priority. |
|||||||||||||||||||||
isInMultiLineMode | boolean | ||||||||||||||||||||||
multiLines | number | ||||||||||||||||||||||
onPlayMultiLine | function | function () | |||||||||||||||||||||
onPreUpload | function | function (numToUpload) | |||||||||||||||||||||
preUploadGang | string | ||||||||||||||||||||||
preUploadGangArr | object | ||||||||||||||||||||||
onPreUploadCallback | function | function (data) | |||||||||||||||||||||
statEls | object | ||||||||||||||||||||||
isPlayNextLineNoScroll | boolean | ||||||||||||||||||||||
onPlayNextLine | function | function () | |||||||||||||||||||||
onChiliPepprPause | function | function (meta) | |||||||||||||||||||||
onChiliPepprPauseOnComplete | function | function (meta) | |||||||||||||||||||||
onChiliPepprPauseOnExecute | function | function (meta) | |||||||||||||||||||||
toHHMMSS | function | function (secs) | |||||||||||||||||||||
gotoLine | function | function (linenum, isMarkSent) | |||||||||||||||||||||
fileInfo | object | ||||||||||||||||||||||
onFileLoaded | function | function (txt, info, skipLocalStore) | |||||||||||||||||||||
resendGcodeToWorkspace | function | function () | |||||||||||||||||||||
jumpToTop | function | function () | |||||||||||||||||||||
jumpToLine | function | function (linenum) | |||||||||||||||||||||
setupJumpScroll | function | function () | |||||||||||||||||||||
preSetupInfiniteScroll | function | function (doTopScrollOffset) | |||||||||||||||||||||
infiniteScrollDestroy | function | function () | |||||||||||||||||||||
setupInfiniteScroll | function | function (doTopScrollOffset) | |||||||||||||||||||||
showingStartIndex | number | ||||||||||||||||||||||
showingEndIndex | number | ||||||||||||||||||||||
showingStats | function | function () | |||||||||||||||||||||
setupOnQueueWriteCompletePubSub | function | function () | |||||||||||||||||||||
jsonOnSend | function | function (data) | |||||||||||||||||||||
onQueue | function | function (data) | |||||||||||||||||||||
onWrite | function | function (data) | |||||||||||||||||||||
displayLine | function | function (index, chilipepprPauseFun) | |||||||||||||||||||||
onComplete | function | function (data) | |||||||||||||||||||||
onError | function | function (data) | |||||||||||||||||||||
isInExecuteScrollToMode | boolean | ||||||||||||||||||||||
lastLineMarkedExecuted | object | ||||||||||||||||||||||
onExecute | function | function (data) | |||||||||||||||||||||
updateRowQueueStats | function | function (linenum) | |||||||||||||||||||||
updateRowQueueStatsEl | function | function (rowEl) | |||||||||||||||||||||
prependRows | function | function (endIndx) | |||||||||||||||||||||
appendRows | function | function (startIndx, skipWaypoint) | |||||||||||||||||||||
removeAllRows | function | function () | |||||||||||||||||||||
removeRowsFromStart | function | function () | |||||||||||||||||||||
removeRowsFromEnd | function | function () | |||||||||||||||||||||
feedrateEl | object | ||||||||||||||||||||||
getFeedrateMarkup | function | function (html, isJustGettingRaw) | |||||||||||||||||||||
getCommentMarkup | function | function (html) | |||||||||||||||||||||
getTooltipMarkup | function | function (txt) | |||||||||||||||||||||
lastElemIndex | object | ||||||||||||||||||||||
cleanupHilites | function | function () | |||||||||||||||||||||
cleanupDomElem | function | function (elem) | |||||||||||||||||||||
parseGcodeForDomElem | function | function (elem, doTooltip) | |||||||||||||||||||||
parseGcode | function | function () | |||||||||||||||||||||
createGcodeDesc | function | function () | |||||||||||||||||||||
gcodeIsLoaded | boolean | ||||||||||||||||||||||
gcodeData | object | ||||||||||||||||||||||
gcodeLoad | function | function (callback, context) | |||||||||||||||||||||
obj3dmeta | object | ||||||||||||||||||||||
userCallbackForGet3dObj | object | ||||||||||||||||||||||
get3dObj | function | function (callback) | |||||||||||||||||||||
get3dObjCallback | function | function (data, meta) | |||||||||||||||||||||
calcEstimatedRemain | function | function (indexOfLineAt) |
ChiliPeppr is a hardware fiddle, meaning it is a website that lets you easily create a workspace to fiddle with your hardware from software. ChiliPeppr provides a Serial Port JSON Server that you run locally on your computer, or remotely on another computer, to connect to the serial port of your hardware like an Arduino or other microcontroller.
You then create a workspace at ChiliPeppr.com that connects to your hardware by starting from scratch or forking somebody else's workspace that is close to what you are after. Then you write widgets in Javascript that interact with your hardware by forking the base template widget or forking another widget that is similar to what you are trying to build.
ChiliPeppr is massively capable such that the workspaces for TinyG and Grbl CNC controllers have become full-fledged CNC machine management software used by tens of thousands.
ChiliPeppr has inspired many people in the hardware/software world to use the browser and Javascript as the foundation for interacting with hardware. The Arduino team in Italy caught wind of ChiliPeppr and now ChiliPeppr's Serial Port JSON Server is the basis for the Arduino's new web IDE. If the Arduino team is excited about building on top of ChiliPeppr, what will you build on top of it?