Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Hört sich an als ob PID werte im eeprom für den 2. Extruder nicht sinnvoll belegt sind. Kann passieren wenn man auf 2 upgraded dann werden die nicht mit initialisiert. Also mal im eeprom editor nachsehen was drin steht. Sollten denkeich die gleichen…
-
Looks like you are using CuraEngine. There you must use extruders starting with first one. Use Slic3r or Slic3rPE if you want to use only a different extruder or write temperature without T0/T1 and select extruder before printing.Not sure what you w…
-
Normalerweise kann man über den server locker 300 Zeilen/Sekunde und mehr (ja nach Betriebssystem) drucken, so das dies normalerweise kein Problem ist. Natürlich kann man jede Auflösung so steigern das es zu einem Problem wird. Wichtig ist das ping-…
-
See in eeprom which heat manager you use. For bed you can also use 0 which is simply on off. Should be no problem.
-
In config tool mechanics at the bottom define the jam method. Trigger on high or low depending on how you wire the switch. Select jam action to request pause at host. You need a host knowing the signal like Repetier-Host or Server. In tools set jam …
-
Yes and it will take even more time. It is on my todo but many other things as well. If you need it faster you need to use a client on the repetier pc that converts MQTT to webapi calls. That will be working any time. For status query this is quite …
-
Looks like you did not understand me since the error is what you already thought: #define ENDSTOP_X_BACK_ON_HOME 25 #define ENDSTOP_Y_BACK_ON_HOME 25 #define ENDSTOP_Z_BACK_ON_HOME 10 That says after homing move x mm back again and assume that pos…
-
Die Geschwindigkeiten in den Hardwareeinstellungen werden eh nicht genutzt da host die ja selber setzt. Einzig die Latenz wäre etwas aber von den Namen her seh ich nichts was darauf passt. Sind das beides die gleichen windows Versionen, da die Treib…
-
I'm nearly finished with next update containing it natively. Just do some testing and then publish.
-
By default the driver only uses digital output. Reason is that most pins do not have a hardware pwm timer that is not used by firmware. See drivers.cpp this function: void LaserDriver::changeIntensity(secondspeed_t newIntensity) {#if defined(DOOR_…
-
Switch of eeprom mode has no real effect but seems that it does not cause compiler to crash, so ok. MOVE_Z_WHEN_HOMED means move z only when z is homed. ENDSTOP_X_BACK_ON_HOME after homing add extra distance to end stop. You might try in firmware…
-
Actually only in extruder.h the line #define VIRTUAL_EXTRUDER \ 16 // don't change this to more then 16 without modifying the eeprom positions needs to be changed. As said eeprom will not work …
-
There is no switch and if you have eeprom all values must be in eeprom. But there is intermediate way as most users will use eeprom editors to change them - do not report all values so user does not see them and hence does not change them. Check eep…
-
Don't think it depends on wipe tower directly. Retraction is normally not a problem and can be fast. Re-extruding will hit at the end on plastic or at junction hit something that causes lost steps or filament slip. Just an idea why. Maybe both have …
-
Yes, good idea. Not often used but when you need it you are happy to have the option.
-
The problem lies in how server handles firmware wish to disconnect. Well it does and then it reconnects but klipper is in error state as it does not reset. I have modified this for next release. For now go to /usr/local/Repetier-Server/firmwares/kli…
-
Just tested 1.0.4 aka dev version 15:17:45.278: N9342 G2815:17:45.283: Z correction disabled15:17:45.287: Info:Marked all extruders as unjammed.15:17:45.291: Jam control disabled:115:17:45.291: Cold extrusion allowed15:17:45.409: SelectExtruder:115…
-
Since we are working on V2 hard which works differently, I do not think we get time to modify that except for errors if detected. V2 gets it's own documentation resp. already has but it is not finished just like V2. But it will be much better docume…
-
Firmware is not prepared for flexible virtual extruders. If you find the arrays and check if there are range checks in c++ code you can modify it of course. The other thing is how many colors/extruders do host and slicer softwares support. I know w…
-
Ok, so it is firmware sending wrong position as you say you are at 20, 20, 10 after homing is finished and host adjusts to that once it reads the position from firmware. So host is ok, firmware wrong. Can you try 1.0.4 firmware (dev version) to see …
-
First use homing sequence with preheat and set min extruder temperature 0. Then you can define where to probe. 1. G1 S1 allows negative z coordinates being send. Z probe height is distance bed nozzle when it triggers and can be set in eeprom. 2. R…
-
Clock and translation are independent things. Currently there is no selectable format at all. I found I could use momentum for it. Have to test if size of output stays at that size or smaller for all countries supported. Then I might be able to make…
-
Ich glaube für due wird auch eine memory report beim compilieren ausgegeben. Der Fehler ist wie vermutet das ram ausgeht. Aber da muss ja noch ein puffer rein. 635 ist eh viel zu groß:-) Schon den Test mit M111 S24 gemacht viele Zeile pro sekunde d…
-
Ok, auf dem Due kann der Wert schon recht groß werden. Ist aber nicht die liste der gepufferten Befehle sonder der gepufferten Bewegungen. Kleiner unterschied da ja auch noch andere Befehle gesendet werden. Zu groß sollte man ihn nicht wählen, da so…
-
Have to test this if it is really not helping. But that is exactly the place which I meant. Of course you need to rehome after changing it. Can you provide a log with commands enabled of your homing. Maybe it is sending a position before it has fini…
-
For deltas #define DISTORTION_EXTRAPOLATE_CORNERS 1 is always a good thing to increase the testable area. Always think that extruder with applied z offset needs to reach the positions. In this case a lower DISTORTION_CORRECTION_POINTS is normally h…