Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Your z steps per mm seem to be too high so 0mm z move are more then 10mm in real. At least it looks like this.
-
I guess you have to reconfigure your firmware to handle this on your own. If you have a configuration.h file it should be easy in the configuration editor. You find much informations about bltouch in this forum - seems like it needs some special han…
-
G32 and G33 are independent and have own areas which can differ and ordering can be different, that is normal. Run G1 X100 Y100 and start G33 after G32. That should allow activating z probe. Make sure bed coating is 0. This is added to G28 in compa…
-
Sure. When you safe in object placements safe button you can select the format (amf/obj/stl/3mf).
-
What host are you using? Our host can not update firmware and I'm not aware that we tell users to update. So maybe you are talking about the Wanaho host?
-
Check this http://www.reprap.org/wiki/Firmware_Capabilities_Protocol especially the PROGRESS capability. Marlin already has cap protocol also in some releases disabled by default. Hope they have changed that meanwhile. No idea why one would not wan…
-
You have disabled face rendering. In view menu you can enable it again or crtl+F will also toggle it.
-
Good point. Currently host does not zip since only next version will be able to handle it. And normally it is on same network so zipping is not really needed then. Will think about it.
-
I see all 4 relevant software programs and none is using excessive cpu or memory. So from that point there is no reason to crash. That you also lost connection on ssh/host lets me think that more then just a server bug is involved. If server crashes…
-
It is exactly like the message said. I assume it is the bed, but to be sure connect and only heat the bed and see if you get same error message. So what it said is I powered the bed for 31 seconds but the temperature did not rise at all. So that ca…
-
Yes, was a bug I fixed 2 days ago.
-
Just added for next release.
-
New version is nearly finished, so will not do that right now. Will think about it. Good news for you is next version accepts zipped gcodes as well. That at least reduces data amount over WAN.
-
First thing with mixing extruder is set mixing ratios for all virtual extruders. They move like defined my mixing ratio. So set for example T0-T2 to 100/0/0, 0/100/0, 0/0/100 to move only one of the three. E0 could be a blocked filament, then moto…
-
Thanks for the reminder. Since we do not use M105 any more with newer repetier-firmware since that firmware pushes temperatures without request now I have a bit forgotton this. Just have added the option for next release.
-
That is something the server can not figure on it's own. But if you go to global settings->connectivity you can define an additional entry appearing at the top with symbolic name and port. When you need no port to enter that is because browsers u…
-
Also I do not believe the 130048 bytes. 128K = 131072 minus protected area - 4096 or 8192 for bootloader. Assuming 4K for bootloader it should fit without overwriting the bootloader if possible. Bootloader sits at maximum end of memory while program…
-
1) G32 assumes plane, so G33 is the solution here. Bended or bumps make no difference. Just start with G32 so G33 needs to do less. 2) yes 3) Not really. Slower is always better but slower. At some point it will not give a good print at all even fo…
-
This looks fine to me. Consider that the led is only on very short as it retracts immediately when triggered. Since all values seem to make sense I would bet on this rather then crosstalk making a signal and getting such a good z pattern.
-
No. Firmware does not see if it was called after a bootloader was started or directly. And since there is common way to detect this a query is not possible.
-
You have created some part double and that crashes now when registry is read: System.ArgumentException: An item with the same key has already been added. To solve it check ~/.mono whcih is the mono registry. and find software/Repetier and delete it…
-
G32 S2 not Z2 please. What exactly id it do when it did not trigger? No moves at all? Please give more details if you need help. Log output is always helpfull and used firmware version.
-
Uploading should be done within some minutes. If you use normal arduino upload you should not be able to kill bootloader since some chip flags normally protect it from overwriting (if installed correctly from vendor). One problem with Melzi is the …
-
Just checked http://smoothieware.org/stopping-smoothie and it looks like most commands also have proper g codes. Maybe I can also add a # as escape sign for commands to be send 1:1. Have to check how that is handled and if it can contain gcode check…
-
Per printer commands only work in upcoming release!
-
We do not keep printed files alive. We have a model storage for g-codes you want to preserve and can use to reprint as often as you wish. Host keeps a copy of last sliced file so you can reupload that if needed and no new gcodes sliced. Since we al…
-
1) You use G32 as this makes 90% of the correction. If your plane is even and you have no delta with bad geometry that you can not get fixed to create a real plane this is 100% correction. G33 is only used if bed is not planar or from wrong delta g…
-
From config.h on github /** Correction computation is not a cheap operation and changes are only small. So itis not necessary to update it for every sub-line computed. For example lets take DELTA_SEGMENTS_PER_SECOND_PRINT = 150and fastest print spe…