Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Also make sure you go back from z endstop during homing. For z min homing this is normally 0 but for z max homing you need it to be 1-2mm depending on bed tilt.
-
if bed coating is not set you need to reduce Z_PROBE_HEIGHT by 2.2mm.
-
Warping is a typical ABS problem. The bigger the print the more prominent it gets. Professional printers use a heated chamber to print bigger ABS objects as the temperature difference is what adds strain to the print and heating the whole ABS part r…
-
Maybe of importance here - are you using 0.86.2 as server version? 0.85x-0.86.1 had a bug that could block printing after a finished print due to a dead lock. So if you have one of these versions updating might help here.
-
What I meant wa scompile your own firmware with 115200 baud as baud rate and install it with arduino ide. Then you could use the serial monitor to see if communication works and what it says as it seems that there the problem is. Problem with arduin…
-
If it is only for heater pins you can set #define HEATER_PINS_INVERTED 1 for fans there is no invert and you need to do this manually in HAL.cpp in PWM_TIMER_VECTOR, just search for HEATER_PINS_INVERTED and you should see how it is done. But notic…
-
Repetier-firmweare stores important data in eeprom - whcih is a non volatile memory on your printers computer. LCD = Liquid Crystal Display - means a display on the printer if you have one.
-
dev version of firmware was meant, yes. There also many z-probing issues have beed solved, so with problems that is always my first advice.
-
You could also try 115200 baud as this is also very common and if config had this originally it might have swapped back on a eeprom error. If you have lcd you can also check what baud rate is set in firmware. If you can set it to 115200 by uploadin…
-
Strom an/aus bezieht sich auf ein firmware feature den Strom mit M80/M81 ein und auszuschalten. Um das über eine Pi-Pin zu machen brauchst du ein eigenes script das das macht und rufst es dann vom menü aus aus. Siehe Anleitung wie man befehle hinzu…
-
You can load any gcode. Main toolbar "Load G_Code" does the trick.
-
Make sure your head is at a position where activating the z probe is possible. So run G1 X0 Y0 Z10 before starting the map. There it should be possible to activate. dev version is a bit more clear with such problems, but 0.92 might still have also s…
-
I guess you have no hardware Z max endstop so this can in deed happen. You can choose to not go up with z on homing to prevent this. The other solution is to reduce z length by that value so even at z max you could move 10mm up. Problem is when enab…
-
On startup the firmware sends "start" to signal it started and can receive commands. This did not happen when you got the message. Maybe it is just the wrong baud rate especially if upstairs means a different computer?
-
In 2.0.5 you can switch between speed and extruder for coloring the model.
-
You see layer in the editor. speed, shell etc are not available as information. There is just no common marker for shells or print move types.
-
What might have happened is that you have 2 gcodes in print queue. In that case print does only add a new file in print queue, but since it has more files it doe snot know which to start. So go to server tab, select waiting queue and select a file t…
-
The Z view shows clearly that it has underextrusion, but that seems not the mainproblem. The Z should be open but is not at the ends from backlash. Also you say it is fixed there must be some part not fix as this is th eonly thing explaining the pro…
-
Yes, the G28 is causing the busy until homing is finished. Also you have 2 moves before homing which is normally a very bad idea. So far everything ok. Only temperature is wrong. First make sure temperature changes when heating so you know it is us…
-
Do you have ping pong disabled (default) in connection settings? In that case the G28 should already be send when the reset occurs and it would be great if you could show the log with commands enabled around that time to see what is happening.
-
So G1 X-50 F600 does not stop while G28 X0 works? #define ALWAYS_CHECK_ENDSTOPS 1 should make sure that G1 would stop in that case, also the move it self should already be prevented being outside of print area.
-
So you want 8 stepper drivers in total? RADDS with extension board and Azteeg Pro X3 have both 8 drivers and are supported. Both have stepper sockets soy ou can add your normal drivers you already have.
-
Happens when you heat and heater doe snot rise fast enough or leaves target region. Check log for the details what failed why and fix or adjust the timeout/treshhold depending on the problem.
-
Wired TCP is normally stable enough to be used for printing and can be used to position printer more freely. Wifi + Bluetooth to printer will work as long as connection is solid. If I consider the interruptions in my wifi network when listening mus…
-
No, G32 does not store the matrix. The points are only used to find the best plane going through all measured points. So for a total planar type only 3 points are necessary. If you have more small errors get averaged giving a better rotation approxi…
-
Webcam orientierung im drucker display war beim test von 0.86.2 immer korrekt. Läuft der server auf dieser version, oder noch auf einer alten?
-
G32 and G33 are completely different tools. G33 L0 lists the result of last G33 run. The 5x5 from G32 are ignored here. Only for measuing the tilt from G32 is used to measure G33 since G33 should only fix the remaining unevenness from bed or delta g…
-
Timelapses sind ein Verzeichnis im drucker verzeichnis. Das Verzeichnis kann man auf die Festplatte kopieren und durch einen link ersetzen. Oder gleich das ganze Speicherverzeichnis in einer zusätzlichenxml- config auf die Festplatte verschieben. …
-
Latest version is here: https://www.repetier.com/firmware/dev/
-
Yes but do not forget {IF_EXT1}M104 T1 S{TEMP1} as well for faster heating.