Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
If you use LCD this is done automatically with the change filament wizard. For host/serve just put M513 in continue pause code.
-
You do not have enough pins I think for 10 extruders. You also need heater outputs to control. So I guess regardless of the solution you need C++ programming skills. I think you need a hardware solution - extra board for steppers, heater outputs (a…
-
Server creates first the zip and then starts the download, so you need enough free disk space for the zip. Is that granted? You can also run top when doing that to see if server memory usage increases, but i think the library for zipping does not h…
-
You need a shadow copy of the www/views/base/about.php where you add your parts. Please do not remove any license marker that exist and only add new sections or your version might be illegal.
-
T1 switches to second T0 to first extruder
-
While you can write software doing I2C to second board I think I2C is simply too slow to do what you need here. Stepper interrupts need to be very fast and work in interrupts, which you can not do that way. Not sure if you have enough temperature in…
-
Did not know about the TMC2660 also these are not supported if they use different commands then TMS2130. What I knew was that it uses more pins the due has so that would be the other issue. And ethernet/wifi would not work. So quite some things. Bu…
-
There is one function that can slow down printing, but it is disabled by default. Timelapse can now make snapshots at specific positions which requires extruder to move there and back and also to wait for snapshot to finish. So that would add extra …
-
Latest dev should now also use speed from eeprom. No you can not store G32 result to replay. That can be recreated easily running G32 S2 anyway. G32 with 35x35 square is overkill as it will not store the positions. 3x3 or max. 4x4 is all you need h…
-
"filename=/tmp/plate.gcode" must be "filename=@/tmp/plate.gcode" or curl will not upload the file and hence it is empty.
-
Intersting since server just sends the commands without modification. So if you have no pauses all the way - I mean you have 111 minutes of extra pause in the print to waste, I think it is not the server, but the firmware. Do you have uploaded a fir…
-
No it does not work with Duet Wif - I mean repetier-firmware. We have no pin setting and especially no support for the extended hardware on it.
-
Have you checked if printers M109 also waits for cooldown? Then that would be a solution. After that add 30-40 dummy commands to ensure power off is only executed once M109 is finished.
-
Has sie vielleicht nur einen anderen Port bekommen? Per ssh einloggen und ps aux|grep mjpg dann siehst du ob der streamer läuft und unter welchem Port. Wenner nicht läuft restarten webcam server in server gui und dann tail -1000 /var/log/syslog und…
-
Yes, but it is not nice as you can not do the official and correct solution. Make sure firmware is compiled with ALWAYS_CHECK_ENDSTOPS 0 G28 G1 S1 G92 Z1 adjust G92 to what ever height you have after homing. G1 S1 disables coordinate check. That sh…
-
Big difference. Make sure in printer-settings values like max. speeds and acceleration/decelleration, Jerk are set correctly. These are used to guess the printing time and wrong values can have a big influence on the printing time.
-
Coordinates in reality are defined by firmware not host. You can of course tell host to start bed at x=2 if that is where bed starts. That is what bed left/bod front are for. Just make sure bed lies inside min/max coordinates reachable by printer.
-
Host rescue can be used by our repetier-server to continue a print that was stopped due to connection lost. It doe snot hurt now that you have disabled it since only server will enable it anyway.
-
Can you try sending M415 S0 after enabling eeprom. Resetting does not restore host rescue system - something I fixed for next update hopefully. That may lead to wrong coordinates being read from eeprom hidden section when firmware thinks it is in re…
-
You can add custom g-code scripts with names in printer configuration. These appear in console or in Printer Cmds. and can contain any gcode.
-
Very much depends where you set it wrong as there are several stages Firmware: - Steps per mm for extruder Server: - Flow multiplier Slicer: - Flow multiplier They all get multiplied but normally it is extruder steps per mm not set correct. All oth…
-
Not really. Only if you can isolate the problem to a move combination causing it it might be possible.
-
You can also increase move xy speed. That is used to move to timelapse position. That would reduce time a bit. Bit is is in deed a longer move so here a more aggressive retract might help, also I'm not sure. Main function of retract is to remove pre…
-
Also doch der einfache web mit falschen Einstellungen. Erklärt es auch. Gut das du es gefunden hast.
-
So the position I told you is correct. Did you restart host and verify changes were written?
-
Fusion should not write to our part of registry. If there is some exporter it might try to read it to see if host is installed, but there is no reason to write also it could do.
-
What is the exact name in eeprom editor that yo want to change? They are all in that file. Also make sure to edit as root. Writing in Program files is normally not allowed and you need to restart host to get new settings.
-
Hört sich an, als ob du den komplizierten Weg gehst. Einfacher Weg ist extruder offsets in der Firmware zu definieren, was heutzutage eigentlich alle können. Komplizierter Weg: Im slicer, im Host und im Server überall die Offsets korrekt angeben, da…
-
It uses Z resolution for steps, whcih is th eonly steps for motion used anyway for deltas. So if you there have 80 just multiply mm offset with that value.
-
Check C:\Program Files\Repetier-Host\plugins\RRFirmwares there is a file marlineeprom.xml I think you need Home offset X M206 X@ M206.*X(-?\d*\.?\d*) Home offset Y M206 Y@ M206.*Y(-?\d*\.?\d*) Home offset Z M206 …