finally setting up my XL. It seems best not to push gcode through it like USB-style printers. The local (prusalink) interface handles the basics, it'd be wonderful to let it run the print and make a centaur out of Octoprint, which lets the XL gain a camera, plugins, the better visualizations, all of that.
Here's what api/v1/job
looks like during a print:
{
"job": {
"id": 3,
"progress": 13,
"time_remaining": 4020,
"time_printing": 663
},
"storage": {
"path": "/usb/",
"name": "usb",
"read_only": false
},
"printer": {
"state": "PRINTING",
"temp_bed": 60,
"target_bed": 60,
"temp_nozzle": 210,
"target_nozzle": 210,
"axis_z": 0.3,
"flow": 100,
"speed": 100,
"fan_hotend": 2929,
"fan_print": 4348
}
}
and api/v1/status
:
{
"job": {
"id": 3,
"progress": 13,
"time_remaining": 4020,
"time_printing": 663
},
"storage": {
"path": "/usb/",
"name": "usb",
"read_only": false
},
"printer": {
"state": "PRINTING",
"temp_bed": 60,
"target_bed": 60,
"temp_nozzle": 210,
"target_nozzle": 210,
"axis_z": 0.3,
"flow": 100,
"speed": 100,
"fan_hotend": 2929,
"fan_print": 4348
}
}