Jump to content

alanbaird

Dormant
  • Posts

    6
  • Joined

  • Last visited

Posts posted by alanbaird

  1. @ahoeben -

    Wow, I never would have thought to select the file type. Seems like it should be able to figure that out when I click on the file. Oh well...

    When I do that, select my .gcode file (the one linked to above), I get the error: "Failed to import profile from (my gcode file): Expecting value: line 1 column 1 (char 0)". The first line in the file is "M190 S50.000000"

    I'm using Cura 2.3.1.

  2. For anyone else that comes across this that wants to decode the string and has the same problem, here's how to decode it:

    1) get the base64 string out of the gcode file I referenced earlier

    2) in Ruby's irb:

     

    require 'base64'require 'zlib'a = "Zlib::Inflate.inflate(Base64.decode64(a)).split(/[\t\n\f\b]/).each{|l| puts l}

     

    or in Python:

     

    options = ""options = base64.b64decode(options)options = zlib.decompress(options)

     

    (don't know about Python - based on this: https://github.com/daid/LegacyCura/blob/master/Cura/util/profile.py#L256-L257

  3. How can I tell if the file has been sliced by Cura?

     

    So, I looked at the .gcode file that I'm using (see it here: http://3dprinterwiki.info/wp-content/uploads/2016/03/Butterfly.gcode). It ends with a string that starts:

    ;CURA_PROFILE_STRING:eNrtWltv2zYUfhWC/Qg+tljjSbLdJDX0sHZJX9qiWDKs....

    That seems like an indication that Cura was used to slice the file right? If so, why don't I get the "profile from gcode" option?

  4. Hi -

    I'm new to 3d printing and just downloaded Cura for Mac (v 2.3.1). I want to view the settings associated with a .gcode file that came with my printer. Elsewhere in the formus it says I should be able to do this by going to File > Profile from Gcode, but this option does not appear in my version of Cura. It seems like there is an expert mode I need to be able to display but I can't figure out how to do this. Can someone please help me out?

×
×
  • Create New...