Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Yes it is by design. Reason is that most browsers limit parallel downloads from a website. Technically a mjpg stream is such a download that never ends. So with more webcams you would not be able to use the app any more, so we disable it to keep it …
-
Please describe it better. Why should moving head change eeprom for example. Eeprom stores limits and when you change them you need to home to make changes effective. Then move. I still have no idea which coordinates you want to have and what you ha…
-
Does the 3rd not move or stop early? If it does not move check endstops with M119 if they trigger correctly. If it stops early it is normally cross talk to end stop causing it to stop. Then twist sensor cable and make sure it has some distance to …
-
Send M502 M500 to copy new configuration.h changes to eeprom. Alternative change them in an eeprom editor directly.
-
You need // Z-height for heating extruder during homing#define ZHOME_HEAT_HEIGHT 20 it does not matter that you are not heating, it must be defined.
-
The latest fix for the problem is volatile long __attribute__((used)) stepperWait = 0; seems like used is not enough any more. dev version definitively contains it.
-
In that case you should check if the heater gets any voltage at all when firmware says heating 100%. Did you do any other changes like firmware update? If not and it worked before the heater or mosfet for output might be defect.
-
If you use an external slic3r appimage all you need to make sure is that you set the version correctly, so it knows the special changes e.g. new infill patterns. That is the same as adding the mentioned file. If it is not present host will use the v…
-
Just download new version from homepage and install. Not sure why sparkle does this on some macs, but I have updated sparkle to hopefully fix that for future releases.
-
This can also happen if your extruder was hot and in progress of cooling when you started reheating. In that case your decouple timing is simply not perfectly set for your extruder. You would need to increase the timeout to prevent this.
-
Does your printer reset on connect? Because that are different handlings. Still searching why it can be that it does not happen in your case.
-
Upgrade to 0.91.2 which contains a rescue system to continue prints in these cases. Works especially well with dev version of Repetier-Firmware which helps to preserve such prints actively. You need to enable rescue system in printer settings. Your…
-
Yes, I have a Prusa MK3 myself connected to server. For Prusa you should select that the port is visible even if firmware is not running. That prevents that you see connection retries caused by the fact that the usb is always visible even if printer…
-
Yes, next dev update will contain it. I think soon I will also publish dev as 1.0.4 stable.
-
Selecting marlin firmware it might work over usb (they still have?). Have no ultimaker to be sure. You need a direct connection to the marlin core of the ultimaker. Easiest is to try your self. The free version is all you need for testing. If free…
-
Host normally uses this extension when you save. Just change filename to name.gcode and select filter *.*and it should write with the name you want. The slic3r option is for host internal communication and has nothing to do with this problem.
-
The sources differ quite a lot. For settings of hardware there is normally an equivalent but there is no conversion tool.
-
Just tested it and I gut the command right away. In repetier.xml in firmwares folder it contains M110 N0M105M115M220 S100M221 S100M355G92 E0G90M82G21M114G90M111 S6M360M539 S1@getip so after a connect it should execute M115. You can go to cons…
-
First, you do not need to upload a configuration. If you had one created with the tool you can upload it, so all values are set to last values. You should always do that if you want to change configuration. Do never change configuration.h manually o…
-
You should better optimize parts used several times like (X_MAX_LENTH - a_steps) ^ 2 by storing them into a temporary variable. These processors are not that fast that we want to add avoidable delays. Next thing is 4 motor control is a problem sin…
-
Well adding and subtracting same value is in deed not effective:-) Here my version for next update of dev: case 20: // M20 - list SD card#if JSON_OUTPUT if (com->hasString() && com->text[1] == '2') { // M20 S2 P/folder or…
-
Möglicherweise sollte \n als \\n geschrieben werden um es zu escapen?
-
Wichtig is welche Befehle gesendet werden, was man in der Konsole immer schön sehen kann. Wenn beide die gleichen Befehle senden werden auch beide funktionieren. Die Befehle werden zwar schnell quittiert aber das ausführen im Hintergrund dauert etwa…
-
Kannst du mit jedem Editor schreiben. Einfach da speichern wo es die Anleitung sagt und server neu starten. Im server.log steht dann ggh. der Syntaxfehler wenn der code nicht läuft.
-
In the past that was correct if (com->hasString() && com->text[1] == '2') { // " S2 P/folder" if (com->text[3] == 'P') { sd.lsJSON(com->text + 4); } is what is happening. I guess we s…
-
Checking it they have: ## NXP LPC176x ARM Cortex-M3#[env:LPC1768]platform = https://github.com/p3p/pio-nxplpc-arduino-lpc176x/archive/master.zipframework = arduinoboard = nxp_lpc1768build_flags = -DTARGET_LPC1768 …
-
Homing is an important part to get reliable positions. You should enable log and home and then send M114 to see where firmware think you are. Send G1 Xpos Ypos Zpos to see where firmware things that is. Under some conditions you can also move unhom…
-
Your log has filtered ACK/commands so hard to see what is going on. Looks a bit like it repeats sending M115 also that is not line 1. 17:20:24.151 : ===Initing RTS has finished=== is strange. In Printer Settings->Connection you can change RTS ha…
-
You should update to 0.91.2 since 0.91.1 has a bug that can cause crashes. Progress view is only shown if fimrware responds on M115 with a line Cap:PROGRESS:1 Can you verify if your firmware sends this. Will also test with next print here, also I …
-
Vermutlich hängt der Drucker beim homing wenn er danach nicht reagiert. Was ist wenn du nur G28 Z0 sendest, also nur die z achse homest. Der normale home befehl ist auch für x und y achse und da die nicht da sind, sind sie vielleicht auch nicht konf…