Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
sudo is most likely your problem. User is repetierserver so you need to add your scripts into the list of sudoers without password prompt. See in our manual how we describe this for the shutdown which we add also to sudoers.
-
sudo is most likely your problem. User is repetierserver so you need to add your scripts into the list of sudoers without password prompt. See in our manual how we describe this for the shutdown which we add also to sudoers.
-
Yes, that is definitively the screensaver. You can configure it in touch screen in Settings->Screensaver.
-
The number of virtual extruders is fixed at 16 with numbers 0-15, so any other virtual extruder will not work. Reason is limited space in eeprom for extruders and 16 is already a lot. I guess in V2 it will be more flexible, but currently it does not…
-
In host printer settings you can define homing position now. Enter your homing position there so host knows where you are after G28. Default is 0 which is not true with your settings.
-
What would your language be? Widely used languages are always welcome if you also plan to support updates of translations in the future.
-
Do you mean the screensaver? You can disable screensaver then it will not disable screen.
-
> Beim Start des Druck ist mir aber aufgefallen, das es etwa 1 Sekunde gedauert hat, bis der Puffer (die "Move Cache Size") gefüllt war, zumindest wurde es in Repetier Server so grafisch dargestellt. Dafür gibt es keine grafische Darstellung im …
-
Channel is defined by your router and not by the clients. And yes if a channel is frequently used in neighbourhood a more distant not so much used channel can work better. Some router even switch dynamically the channel to least used one.
-
Wenn die endstops justierbar sind kann man es so hinbekommen, allerdings manuell. Do ich keinen Drucker mit 4 Spindeln habe ist das mit dem schreiben schwierig. In V1 hab ich auch nicht vor große Änderungen einzubauen. In V2 kann man ein Modul für 4…
-
Sure it is on my list for next release.
-
Mega support will come in V2 then it should be easier.
-
What does the printer return on M105 commands in log? Normally this happens if the format is unknown. You might need to write a log file to see it as they can get filtered. It is also possible that you disabled M105 temperature query in printer conf…
-
You need to select the right board in arduino ide or the file will not be there. Since it wants a avr file probably Mega 2560 board.
-
These are used for bed leveling and are for a delta which is why they contain negative coordinates. You need them to span a rectangle in such a way that all points can be reached with enabled z probe. Cause of the z probe offset this is normally not…
-
> I would think that my steps per mm would be irrelevant to this as the problem seems to occur before it even reaches the repetier firmware in the arduino. No that is wrong. The message comes from the printer and depends on a case where no steps…
-
Make sure to replace #define ZHOME_X_POS 999999#define ZHOME_Y_POS 999999 with homing position. Z will in deed test twice like any action so that sounds ok.
-
Which software do you call repetier? Our host? Just downloaded and installed it and it was not corrupt and worked. When did you get the message from which software? Installer or when starting software it self? On download page is also a section wit…
-
Because you still have homing order on HOME_ORDER_YXZ which is one without T as I said! Use HOME_ORDER_XYTZ instead. Only these use homing position. And also #define ZHOME_X_POS 999999#define ZHOME_Y_POS 999999 which is the homing position for z is…
-
Ok curves get subdivided in lines which are of course quite small. What are your steps per mm and updates per second? Can you also post the gcode. Maybe I can recreate it once my delta is working again.
-
No only the one used for homing: // Used for homing order HOME_ORDER_ZXYTZ#define ZHOME_MIN_TEMPERATURE 0 That is the minimum temperature enforced when homing. Required if nozzle tip is part of sensor and ooze changes height.
-
Yes that is a case that should not happen: int32_t virtualAxisSteps = static_cast(maxStepsPerSegment) * segmentsPerLine; if (virtualAxisSteps == 0 && p->delta[E_AXIS] == 0) { if (numLines != 1) { …
-
Changing the pi should be no problem. Our image works from pi 0 - 3+. But how was connection on the Pi 2? Was it stable there? Your screenshot shows a good connection. As long as linux keeps it it should continue to work. All the server does is swit…
-
Check eeprom - most likely it is not initialized for second extruder as you had only one before. So values for second one will be garbage, NaN, 0. Copy values from first one or restore from config settings. Both will work.
-
For good sd cards the war leveling should prevent over usage of certain blocks so at least a bit bigger cards with free memory should not have problems with life time. In any case normal log is not useful - it is only useful if you need to debug pro…
-
Choose homing order with temperature, then you can tell where to z home on bed as well. Set required temperature to 0 to ignore that part.
-
Windows ist erst mal langsamer als linux bei der seriellen Kommunikation. Zumindest haben das unsere tests gezeigt. Da Repetier-Firmware verwendet wird kann man leicht testen wie schnell die Kommunikation selber ist. Das ist ja normal der Knackpunkt…
-
OK, will test next time with both enabled as counter test. Would be bad if that bit of writing would make a difference. And no it does not write to ram that would not be save during power loss cases. Would only help on connection problems.