Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
First make sure your code does NOT contain line numbers. Host will add them as only host knows what current and next number should be. We do not add any commands in host on our own. We add start/end script if they contain gcode, so check if you had…
-
Ok, your changes were all good. Homing problem was also my config error. I have uploaded github with some tiny changes to remove compiler warning and also to compile with old config without error. Will soon also adjust the config tool to contain th…
-
Not officially. You can copy the slicer settings which are just stored in a folder. Printer configuration is stored in registry so for most too difficult to copy.
-
> X_MAX_LENGTH will have to be the distance between left carriage home position and the right carriage > home position, while XOffset of the right carriage will have to be the distance (in steps) That is xoffset right - xoffset left which is…
-
Yes already merged and tested it a bit. The only 2 problems I see so far is that now heads can crash into each other. Need to see how that can now be prevented. Your bigger x range allows it to move left extruder into right one parking position. I t…
-
That is not how eeprom works. Changing 1 to 2 or back will make it work, except if there is no communication using I2C. Here are the settings used for ruramps #define TWI_CLOCK_FREQ 400000// see eeprom device data sheet for the following v…
-
No, you can not have a synced folder in server. Server would not see the changes and that would lead to serious problems sooner or later. Only sharing within one instance is supported as the server then knows about the connection.
-
Läuft der zufällig an einem Raspberry Pi? Dort ist es ein bekanntes Problem das Linux bei Unterspannung schon mal die USB Verbindung beendet was dann zum Druckstop führt. Sieht man auch in /var/log/syslog anhand der Linux Meldungen dort. Abhilfe sch…
-
v2 has already lazy mode but as eeprom parameter so you can easily switch. Implementation is also much easier there due to new design. But I think it should behave basically like what you implement and just add the move x on first extrusion move in …
-
What happens if you call the "bad" webcams mjpg stream directly in a browser - does it also stop. The question here is which software is causing the problem. Server proxies the stream and normally on connection lost at least in latest 0.90.7 release…
-
Great video. So to summarize it is more like the non lazy mode, but homing keeps it in the pocket and you can move until the full sides because you dynamically switch the limits. And switching while in the "hidden" area will not move the other extru…
-
If you only have a filament switch there are only 2 possible reasons for false trigger. Crosstalk or it has enough space to trigger with filament inserted. To protect for crosstalk do not go to close to heater and motor cables or at least twist the …
-
Ok with M606, will adapt it for V2. I will have a look at your changes when you are ready and do a pull request. I will then decide how to handle it. I guess I still do not get it fully. Maybe because I normally never use dual x in action. Having l…
-
Die Mac Version funktioniert nur mit dem originalen Slic3r. Nur die Windows/Linux version unterstützt mehrere Slic3r Versionen parallel mit eigenen Ordnern.
-
Yes, it just want to be sure to hit the bed, so it moves 1.5*z length down.
-
Main problem on corexy is to find the right combination of drive system and motor directions. Since you need to move both motors for pure x or y motions they need to have the right equation in sum. So there are at least 8 possible combinations. One …
-
You do not have commands/ack enabled in your log, so I can not see if it was send or was send in wrong order. We haven't changed the function since it exist so I would still expect it to work. Regarding decouple this is a firmware issue. You need t…
-
With z max homing you adjust distance by changing z length. Make sure after homing to z max it goes back a bit so it does not touch end stop while you move left/right at z max even with correction on. You set the 3 points according to the selected …
-
At probing height the bed follows the equation z(x,y) = a * x + b * y + c a=0.003 means it will change 220 * 0.003 = 0.66mm while traveling from x=0 to x=220. So it is really rotated. For better results you should correct it manually to be more clo…
-
Ok, so any move with x on bed area the extruder will move. On extruder switch new extruder will also move to that position if old was on bed otherwise will stay parked. That would be what the non lazy mode is supposed to do. If it does not that woul…
-
Sorry, need to revert. Use M603. M604 is already used by repetier.
-
Ok, I think then I did not understand the difference. As I understood it is just lazy switching with additional set of min/max positions to prevent collisions. It would unpark as soon as extrusion is needed. So what did I miss. I saw on https://rep…
-
Do you have only G32 or also G33 used? Always start with G32 an check the output. It return the plane parameter measured and the rotation matrix. Especially the plane parameter are easy to understand. a is correction per x going right and b is same …
-
That is what I thought. Had also problems once I selected a other algorithm in 7-zip that made mac not unzip it. The format allows changing compression algorithms and then the extractor needs to support them as well.
-
Good question. If you manage to detach the process from server it could work otherwise killing server would stop the script as well or wait for script to finish. See advanced configuration how to add external commands using extcommands.xml - They ar…
-
No it is still correct. If you get unknown command you have not compiled with distortion correction.
-
Ok have just added it in modified version. You simply select RepRapDiscount graphic or char controller and it uses the pinout from the description. Hope it works.
-
Have you tried with zips downloaded from thingiverse? Maybe you are using a unsupported compression algorithm for your zip. We have testen thingiverse and youmagine zip files and they all imported well, so that would be a good first test.
-
For easy backup all user files are stored in /var/lib/Repetier-Server. Stop server sudo service RepetierServer stop and copy all files or make a tar file from it if you have enough space to store the file and copy the tar file instead. If you have …
-
Download the armhf package (assuming Pi 2 or better) and run sudo dpkg -i packagename.deb That is all that is needed.