problème de dimension plateau

Bonjour,
j'ai ajouter mon imprimante 3d A10M sur repetier server 
et elle sais donc configurer tout seul dans le logiciel

maintenant avant chaque impression elle me dit que mon plateau et trop petit pour la pièce.
ce qui est faux mon plateau fait 220MM et ma pièce fait 10mm donc je peut l'imprimer savez vous comment corriger ce soucis ?

Comments

  • Hello. As you can see you try to print in a range of 20-301.56 mm, which is bigger than your defined print area (0 - 220). 
    Please check your gcode and your slicer 
  • Bonjour, 

    sur le slicer (cura cest bon) 


    https://gyazo.com/c98c6284119fa1df73149f60d3ffb65c
  • Please check your end gcode in slicer if it contains a G28 command. If it does, add after that line
    G90

    and reslice with that config. G28 is not in general switching mode to absolute, but your config might assume this and that leads to the warning and wrong print area computation.
  • Actually I see your error. It is the
    G0 X0 Y200
    at that line you are in releative motion so you move 200 more to y. Add
    G90
    before that line!

  • je comprend pas votre message.

    Voici le code 

    ;GeeeTech A10M start script

    G28 ;home

    G90 ;absolute positioning

    G1 X0 Y0 Z15 E0 F300 ;go to wait position

    M140 S{material_bed_temperature_layer_0} ;set bed temp

    M109 S{material_print_temperature_layer_0} ;set extruder temp and wait

    G1 Z0.8 F200 ;set extruder height

    G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position

    G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line

    G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little

    G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line

    G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed

    G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish

    ;end of start script

  • edited October 2021
    The error is in the end script: G0 X0 Y200
    Please add G90 before that line
  • parfait jai plus le message derreur merci

Sign In or Register to comment.