6

I'm interested in finding online APIs where you could perform a call to some third party service with some print preparation request with my model (i.e. "heal a model" or "set up support") and get in return GCODE file I can send to a 3D printer. My input will be :

  • The 3d model (obj, stl)
  • My printer (makerbot, ultimaker, whatever) or a printer profile
  • A printing profile

This is opposed to all the classical 3D printing processes we have right now. Currently when printing in a 3D printer you would need to go through these phases:

  1. Create/Download a model
  2. Prepare the model for printing with some 3rd party desktop software
  3. Export the model as gcode
  4. Save the file to some flash drive
  5. Plug the flash drive into the printer
  6. Print the model with the printer interface

I would like to know if this process can be simplified to a point where you can just print your model directly from your web browser without going through all these steps. I know I'm over simplifying things here, but I would still want to see if solutions like I suggested exist?

Thanks

Gregra
  • 161
  • 4
  • 1
    For instance, an octoprint installation can greatly simplify the process. You can just upload an STL file to your printer, have octoprint handle the slicing and the sending of the gcode to the printer. Does this achieve what you want, or are you looking for something more specific? – Tom van der Zanden Jan 13 '16 at 10:26
  • One problem is that every printer is slightly different. 2 printers from the same company may heat to slightly different temperatures to print. Overall you need to get to know your printer to know how it will handle different prints and slice accordingly. – Eric Johnson Jan 13 '16 at 13:03
  • This question is unclear as to its purpose. Are you asking about simplifying your process, or are you asking about online gCode generating tools? If the former, you need to change the question title. If the latter, you should remove the parts about trying to simplify your process, because that has no bearing on online tools. – Martin Jan 13 '16 at 18:12
  • This workflow might be necessary for home/hobbies printers, which are more or less "open", which has the advantage to choose a slicer of your choice for example. For commercial machines, this does not necessarily hold true. If you sell the whole package, the workflow can be hidden. I'd be surprised if commercial industrial printers do not offer integration with the most common and popular CAD and CAM software. After all, most CNC machines come with a post processor for exactly that purpose. – the third dimension Jan 13 '16 at 19:54
  • @TomvanderZanden, I've done already Octoprint on a Raspberry. It's a "poor man solution" since I still had to install Octoprint on some machine (R Pi, PC or whatever) and physically connect that machine to the printer. – Gregra Jan 13 '16 at 20:55
  • @EricJohnson - Of course you are right, but I guess it's a matter of usage - I wouldn't use it for printing engine parts that require special handling but more home usage - stuff you can download from Thingiverse for example. I would expect that for this usage the API will be able to handle this at least for certain printers (if not all) – Gregra Jan 13 '16 at 21:01
  • @MartinCarney - I ask as a developer who wants to add an online web page where a user basically drags and drops a 3D model, chooses some printing properties and gets a gcode file that he can print in his printer directly from his PC without going physically to the printer – Gregra Jan 13 '16 at 21:04
  • @thethirddimension - I totally agree, I'm thinking about the common internet user that got a Makerbot for christmas and has no idea in the mysterious ways of 3D printing. He needs some service where he drags a print model and sends it to the printer, process simplicity should be more important then the quality of the print – Gregra Jan 13 '16 at 21:08

2 Answers2

1

WiFi

A few of the newer machines are coming stock with WiFi connectivity such as MakerBot Replicator(s)/Z18, da Vinci Jr., Kudo3D, and some others that I'm forgetting.

However, these WiFi enabled machines essentially emulate what OctoPrint and AstroPrint provide. While wirelessly connecting might save the hassle of not saving a G-Code file to an SD card/Flashdrive, then plugging in said memory device, then selecting the program to run, the wireless solution still requires a slicer to do the work.

Both OctoPrint and AstroPrint allow building up a queue of sliced prints and I know that OctoPrint will even slice a 3D Print-ready model and place it in your queue.

The only application that I'm aware of that seems to reduce the most amount of work is MakerBot Desktop with a MakerBot Replicator/Z18. While MakerBot does not have a great reputation (as of 2016), they have produced some great software. As I understand, here's how you can utilize MakerBot Desktop:

Printing from Thingiverse

  • Log into Thingiverse from MakerBot Desktop
  • Find the model you want to print
  • There should be a handy Print button located in the interface
  • The software will preview the model. Most models that have been uploaded to Thingiverse will be in print-ready orientation/scaling
  • Continue by pressing Print
  • Now the software will slice the model and send the G-Code via USB or WiFi

Really, the only step that MakerBot Desktop skips is downloading the model from your web browser.

There are some rare cases that models found on the internet (such as Thingiverse) will also have the sliced G-Code, but you'll have to be careful to make sure it's the correct flavor for your machine.

Maybe in the future?

Currently, Microsoft is working on a new 3D printing file format called .3MF which theoretically could negate the need to slice a 3D model. I'm assuming that you would need a machine that specifically can interpret the file. This project is still very much in the works and it may be years before we see full support as the format needs to be agreed upon by both software companies like SolidWorks, AutoCAD, Catia, etc. AND the 3D printer manufacturers like MakerBot/Stratasys, 3D Systems, and other big-named companies.

If you combine the benefit of no longer needing to slice a model and WiFi/USB connection, then most of the "manual" work you describe will no longer be necessary.

tbm0115
  • 6,234
  • 2
  • 18
  • 40
1

There are a few methods to simplify your workflow. Two solutions are outlined below and both feature a documented API you can use to further customize your workflow.

OctoPrint was mentioned by other users. OctoPrint will allow you to configure your printer, print profiles and upload STLs for printing from a web interface. You can configure profiles, slicers and slicer profiles for OctoPrint to use to complete your workflow.

Astroprint offers cloud slicing services in addition to features allowing you to manage printers and print profiles.

tamarintech
  • 470
  • 2
  • 6
  • 1
    OctoPrint is nice but requires a local installation and physically connect the machine to the print. Astroprint is very nice and closer to what I was thinking about. I'll take a deeper look and share my findings. I'm not closing this yet, since I want to see if there other solutions like this – Gregra Jan 13 '16 at 21:14
  • So they currently don't provide a developers API (though it looks like they do but I'm getting a 404 page when clicking on 'apps' on this page - https://developer.astroprint.com/dashboard). I'll be sure to follow that – Gregra Jan 13 '16 at 21:24
  • AstroPrint does have an API (it technically also has OctoPrint's API). I guess the documentation just isn't there. You can find some of the AstroPrint specific stuff here: https://github.com/AstroPrint/AstroBox/tree/master/src/astroprint/api Sorry, I thought much of that had already been shimmed up. – tamarintech Jan 14 '16 at 05:11