CraftWare Slicer

Post Reply
jesse
Printmaster!
Posts: 422
Joined: Tue Jan 01, 2013 8:38 pm
Contact:

CraftWare Slicer

Post by jesse »

Can someone help me configure this new slicer to support the Delta shape?

http://www.craftunique.com/craftware

[img]http://i.imgur.com/m2H6I6K.png[/img]
Last edited by jesse on Thu Jul 10, 2014 4:10 pm, edited 1 time in total.
jesse
Printmaster!
Posts: 422
Joined: Tue Jan 01, 2013 8:38 pm
Contact:

Re: CraftWare Slicer

Post by jesse »

It's possible to move the object to the bottom left corner in order to get it to print on the middle of the Onyx bed.

I found a bug in the GCODE created by the CraftWare slicer. It generates M106 SXXX and M107 commands even though there are no options in the configuration.

Here's a solution in PHP to fix it:

Code: Select all

<?php
  $gcode = file_get_contents("craftware.gcode");
  $lines = explode("\r\n", $gcode);
  
  $outputLines = array();
  
  foreach($lines as $line){
    if($line == "M107") 
        continue;
    else if (substr($line,0,6) == "M106 S" && substr($line,6,3) != "255")
        continue;
    else
        $outputLines[] = $line;
  }
  
  echo file_put_contents("craftware-fixed.gcode", implode("\r\n", $outputLines));
  
?>
Otherwise, the slicer is working well and has features similar to KISSlicer and Simplify3D. However, it's free (beta) and only available on Windows.
jesse
Printmaster!
Posts: 422
Joined: Tue Jan 01, 2013 8:38 pm
Contact:

Re: CraftWare Slicer

Post by jesse »

I recommend trying this slicer... No one is looking in this sub-forum.
McSlappy
Printmaster!
Posts: 800
Joined: Wed Dec 11, 2013 9:11 pm
Location: Queensland, Australia
Contact:

Re: CraftWare Slicer

Post by McSlappy »

I just tried this yesterday - really love the interface and how it handles the models/slices... Feel like I can actually see some close up details. I havn't been able to produce a printable gcode yet since it produces a double layer on the first few layers and I'm not sure why.... I don't have the delta shape, just a centered square 300mm which is fine for now.

This looks very promising, although their terms and conditions state that Thingiverse is an affiliate and that makes me nervous :P
I loved my Rostock so much I now sell them in Oz :)
Post Reply

Return to “Other”