1. Got a question or need help troubleshooting? Post to the troubleshooting forum or Search the forums!

Unresolved Errors in CURA Console

Discussion in 'Troubleshooting' started by J3R0D, Jan 19, 2015.

Thread Status:
Not open for further replies.
  1. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Error output from Cura console, right as and before my print went haywire. Also anyway I can make my calibration for the dimensions of my build platform not extrude any material? I always seem to have to remove the dot, or it sometimes lead to layering issues. Also just recently set my Z axis to move up 0.075 when retracting; don't know if that has anything to do with it.

    < echo:endstops hit: Z:-0.37
    < Error:No Line Number with checksum, Last Line: 201
    < Error:No Line Number with checksum, Last Line: 619
    < Error:No Line Number with checksum, Last Line: 960
    < Error:No Line Number with checksum, Last Line: 978
    < Error:No Line Number with checksum, Last Line: 989
    < Error:No Line Number with checksum, Last Line: 997
    < echo:Unknown command: "90"
     
  2. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,277
    Unknown command 90 means it's sending some weird command in Gcode. We'd need to see the gcode of what you're trying to print. Might be something wrong in your startup codes
     
  3. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Starting GCODE
    Code:
    G21
    G90 ;absolute positioning
    M82 ;set extruder to absolute mode
    M107 ;start with the fan off
    G28 ;Home All
    M565 Z-1.0 ; Define 1.0mm of offset, adjust this value if you're too high/low. More negative is further from the bed
    G92 E0 ;Reset Extruder count
    G1 E-3.0 ;Retract 5mm for probing to limit dots
    G29 ; Run autolevel routine
    G1 Z15.0 F{travel_speed} ;move the platform down 15mm
    G92 E0 ;zero the extruded length
    G1 F200 E3 ;extrude 3mm of feed stock
    G92 E0 ;zero the extruded length again
    G1 F{travel_speed}
    ;Put printing message on LCD screen
    M117 Printing...
    Code:
    M104 S0                     ;extruder heater off
    M140 S0                     ;heated bed heater off (if you have it)
    G91                                    ;relative positioning
    G1 E-1 F300                            ;retract the filament a bit before lifting the nozzle, to release some of the pressure
    G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
    G28 X0 Y0
    G28 Z0                              ;move X/Y to min endstops, so the head is out of the way
    M84                         ;steppers off
    G90                         ;absolute positioning
    ;{profile_string}
     
  4. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Also I tried printing out a button last night, (The first one being successful) but this one printed a weird layout layer that is in my project path, so it messed up my initial print. Anyway I can disable it putting down a the outline layer, or atleast modify it? Kinda new to slicing and etc. I also do have Simplify3d, just have yet to use it until I get all the settings I need for the latest RoboR1
     
  5. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,915
    Likes Received:
    7,338
    The latest Simplify has a profile for the RoboR1 itself, unless you mean print tool head profile information (i.e. what settings work best with each material).
     
  6. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    That, but mostly how to use the slicing or edit my pathing. I understand you, Mike, and a few others use Simplify3d quite a bit and are impressed, so I figured I'd give it a try
     
  7. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,277
    The part you're talking about is called a skirt. It's good to use to make sure your first layer looks nice before it gets to the actual print.

    I didn't see anything in your code that looks off. Are you still getting that "90" error
     
  8. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Yeah every once in awhile I get that error, but not too worried about it. The checksum errors are gone. Any chance you want to look at an stl file I made in cad to make sure its skirt(s) are correctly laid? It printed perfect the first time; however, I made changes since then and now it prints a weird starting layout layer.
     

    Attached Files:

  9. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,277
    Now I'm confused. Could you share a picture of what you mean?
     
  10. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Yeah I'll post one here in a few, my machine is powered down still and I just am barely waking up haha.

    I mean that when it starts to print, it first puts down a layer that surrounds my actual object I'm printing. So lets say I'm printing a circle, it will put a slightly bigger circle on the outside, and then start to print the actual circle within it.
     
  11. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,277
    yes that's called a skirt. I always use at least 2 loops.
     
  12. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Here are my skirt settings,

    Line count = 2
    Start Dist = 3
    Minimal Length = 150
     
  13. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,277
    If you really don't want it set Line count and min length to 0, but I think it's always a good idea. It also primes the nozzle.
     
  14. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Yeah I'm going to use it. However; I changed it's dimensions to be way bigger to avoid sticking
     
  15. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Figured out why the button was printing the weird outline, it was slightly offset in cad, so only half of the bottom of it was flush.
     
  16. Mike Kelly

    Mike Kelly Volunteer

    Joined:
    Mar 11, 2013
    Messages:
    6,967
    Likes Received:
    2,277
    Sounds about right. I think people would be shocked at how many printing issues are caused by stl or slicing issues.
     
  17. J3R0D

    J3R0D New Member

    Joined:
    Jan 14, 2015
    Messages:
    26
    Likes Received:
    2
    Yeah I'm just beginning, but I've read a lot about it, and continue to do so on my adventure to the 3d printing world.
     
Thread Status:
Not open for further replies.

Share This Page