Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • You start mixing firmware and host. You defined in host that bed size is 200x200x100mm with left front edge being 0,0,0. If that differs from coordinates defined in firmware center in host is not center for printer! Both must match. Check host scri…
  • Just think bed is rotated 10° right side down so effect is easier to see. z min stops any z move so a real z min endstop needs to stop at the lowest point - here right side. If homing z is done at x min it would press nozzle some 35mm into the bed o…
  • Cartesian&apikey=7075e377-7472-447a-b77e-86d481995e7b? must be Cartesian?apikey=7075e377-7472-447a-b77e-86d481995e7b& parameters start after ? so apikey is most likely never been parsed and hence you are not authorized. Also note that data …
  • u8glib is included in firmware. You do not use a eventually installed library at all.
  • You can only have one extruder heater with mixing extruder, so the second one would not heat. Apart from this the idea was quite good also ditto mode would require flow at 200% so that every part gets 100%. You could hack extruder.cpp to have the fi…
  • To build a sqaure you would need P1 = -69.28, -40 P2 = 69.28, -40 P3 = -69,28, 80   Old p3 was not above P1 but diagonally over it which made it a parallelogram.
  • Please upgrade to latest 1.0.4 as I fixed some serious errors today, also not related to your problem. Blinking ??? in display means axis is not homed. #define MOVE_Z_WHEN_HOMED 1 would say to only move after homing. Guess yours is 1. Don't know th…
  • Wenn aufrufen von Befehlen zu aussetzern führen denke ich nicht das es am Server liegt. Dann blockiert das laden des Befehls oder Starten den Server und er macht nichts weil Linux ihm einfach keine CPU-Zeit gibt. Ist das auch bei der alten Version? …
  • Ok, I have found the problem. Had to to with my advance improvements. A variable that should be float was int so positions were rounded to full integers. Not good. Is now fixed in 1.0.4.
  • For the api you need no users, you can just use the offical api key you see in Global Settings->Connectivity->API Key. When there are no users all users are admins and can add new users. Go to User Profiles and hit Create User.
  • Also do you extrude absolute or relative. Might make the difference for the bug.
  • Which version do you use? 1.0.3 or development? At lower layers long moves are split into 10mm segments, so from your description it sounds like the first segments does e move and remaining stop doing so.
  • That is not possible in V1. All steps are copied 1:1. In V2 we plan a solution to this with a virtual  e step for all and individual e steps for extruders. That way it could be made, but also that is not implemented now.
  • You get the parallelogram if points are in wrong order. P1 is left front edge, P2 the right front and P3 the left back. P1-P2 and P1-P3 form the parallelogram.
  • Distortion correction is always on top of bed correction. Bed correction undoes bed rotation - distortion vanishes over height but you still want the much bigger rotation error fixed everywhere. ZHOME_HEAT_HEIGHT is just for heating so nozzle does …
  • Mysteriös. Oft sieht man das firmware temperaturen im Sekundentakt meldet, da ist dann alles in Ordnung. Manchmal kommen sie aber mehrfach hintereinander, wurden also gepuffert und verzögert verarbeitet. Die Frage ist dabei wer hier verzögert. V14 …
  • Im Drucker Kontext Menü (Hamburger)"Print Logs" auswählen und markieren das die geloggt werden. > "Eine sekunde pause kann passieren wenn ein move eine Sekunde braucht.": Ja, aber in der Sekunde bleibt er stehen. Auf diesem Bild sieht man die St…
  • It is not important if host has them, more important is if firmware supports it. Check Repetier.ino to see the list of supported gcodes.
  • Yes, wrong code. We are not marlin:-) G32 S2 is what you want to run.
  • Hast du mehr gcode zur analyse? Temperaturantworten werden jede sekunde gefragt so das die im richtigen abstand hier kommen. Komisch ist das da kein "ok" vor steht oder ist hier automatisches Temperaturreporting aktiv? Eine sekunde pause kann passie…
  • Install server version 0.91.0 or add group gpio to user repetierserver. You did add powerOff to printer context menu. As manual states /usr/bin/afplaywould be used to define @execute functions. bash is not required at the start. Your script should h…
  • For interest, what DTR/RTS handling did you set in server, so it works?
  • Are the examples what you generate? Because they are wrong. Errors I saw directly are - () instead of ; for comments - finish with % - Use of sticky G code numbers is not supported. You need to repeat G1 for every new coordinate set.
  • We found one reason. In absolute extrude position mode the E value is restored wrong causing next extrude to retract. Slicing with relative coordinates are a temporary solution until we offer a fixed solution.
  • With 32 bit the 22KHz should be no problem. Overflow makes sense in the meaning that it can cause strange side effects where you do not expect them. Only thing is I'm not aware of any part causing them. Can you post your configuration. Maybe I can …
  • What is that supposed to be?
  • Thanks. Checking the log I see you use absolute positioning for extruder and we restore E to the wrong value (total extrusion so far). This makes it worse every layer. If you slice with relative extrusion coordinates it would work (which we used, so…
  • Checked the code. When distance is set to 0 it will not add any extrusion move, so gcode as proposed would be helpful to see why firmware thinks there is a retraction. In my head I do not see it so seeing what is in your code around the problem migh…
  • Just an idea, but is the motor current set right? If not it might not hold microsteps. If you get patterns is is a systematic problem. But you should also see other errors happen.
  • Can you enable logging when testing. Then you can post the code that gets send at snapshots. Search for  @excludeTimeOn to find an example. Make sit easier to say why extrusion is so high.