Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
I have tested it and after timeout z axis keeps stable for me. So whatever it is also depends on something else. A disabled stepper driver does not send moves so to be responsible it would need to enable the driver. Then it would try to stabilize on…
-
The autotune uses a mathematical algorithm to test swinging behaviour. It sets pwm to bias +/- d. After your last test this means it wants cooling with 235-19 = 216 pwm setting which seems enough to heat further. So the algorithm was diverging too m…
-
Windows 10 has this repair function build in. So the button only appears if you are running it on a windows 10 machine, otherwise you have to use the microsoft cloud service to do the same.
-
Yes, simply select extruder 2 in config tool and it should work. As counter test you could also set the extruder or x axis to E2 instead just to test that the socket works as expected. If not it could be a hardware failure, wrong mounted driver. Do …
-
Ok, server log is clear 2017-11-21 19:14:32: error: Reading serial conection failed: End of file. Closing connection. Linux closed the connection so server close dit as well. Linux log also shows this Nov 21 19:14:32 RepetierServer kernel: [31621.…
-
Guess you are using latest dev version with current server/host. Fimrware has a autoreport temperature feature that these hosts enable if firmware tells them it is supported. In that case you get the temps. without the need of sending M105 every sec…
-
That socket is E2 since we start with E0!
-
You your bed distorts 2mm? Sounds a bit much. Or is this more an error in reading near the edge for ir sensor?
-
Yes it makes and here it is - M233 X Y - Set temporary advance K-value to X and linear term advanceL to YSee repetier.ino file for full list of gcodes supported. And before you ask, this sets advance for active extruder only.
-
If an axis is not activated check homing direction. You want z ma xhoming from endstops and if it is set to z min it will do nothing due to missing endstop for z min.
-
What logs do you show here? These are not the logs I meant. Looks more like dmesg output. Syslog looks like this; pi@Felix:~ $ tail -10 /var/log/syslog Nov 22 06:51:28 Felix avahi-daemon[411]: Received response from host 192.168.0.…
-
You must convert the objects you want to print into gcode. Slicers are the software component doing this. The host has 3 slicers included that you can use for this. Read our docs on www.repetier.com to see how this should work.
-
Have you checked if they share the prime tower? For 2 color prints you need only one and for 3 you might share areas, but not sure that prusa does here.
-
Yes, that should work. Writing to eeprom will force a reload of all variables to ram. But these things should be used with care - you will not write too much to eeprom to it lives longer, also radds eeprom survives a million writes, so much better t…
-
Yes, it takes it's st z value and measured value may differ +/-DISTORTION_LIMIT_TO.
-
Yes, that sounds familiar. Have an other user with same problem. Form pc it works and from pi it gets instable. When I do it from my pi it is stable, so it must not be instable in any case. But it is a known fact the a pi is very sensitive to power …
-
No, execute commands are run as independent threads. So delay will only the time to call the script, but it will not wait for it to finish.
-
I was at least talking about prusa firmware. Please have a read of the github thread for more info.
-
No host problem. Guess you mean a board for printer. Stepper drivers need a heat sink and often the bed mosfet could also use one. The normal board chips normally do not need one, but you should better search for your board and see where they place…
-
No special version required, but in the github issue the error is been reported as fixed. Also i did not see it in a commit it might be included in 3.1.0 now. It was not for any special version. It was just a change in N/M110 handling that caused th…
-
If ir is triggered at starting going down it will also stop.
-
IR cables should at least being twisted to prevent crosstalk and motor cables as well. But only if that is the problem and not reflections triggering ir probe as you guessed at the beginning.
-
Don't think that server being connect plays a part for sd prints. Only think that could break is usb connection and printer would then simply not run new server commands any more I think. In such cases you should enable logging and check what is in…
-
Yes, I'm thinking about it. But it also has the penalty of slowing down command sending abit resp. adding more load. Guess it is neglectible since most commands need only a test that no vars are included. But it will not come with next release, ther…
-
Check DISTORTION_LIMIT_TO - if your measured value is not within this range it will abort, so any wrong measurement can cause this. If you set it to 0 to disable it will only fail if it is triggered before going down. We can not really differntiate …
-
Just set allowParams="true" as you already do. The params will then be added after a space to the command you have written already. Just remove the ???????. And also consider that commands are executed as user repetierserver and not pi, so that user…
-
In repetier-firmware you could set ALWAYS_CHECK_ENDSTOPS 0 and if it goes away you know it is crosstalk. Physically you would twist the cable for endstop and motors and heaters to reduce crosstalk. An additional shielding would also help, but maybe…
-
If you do not trust some values you could simply set that value afterwards by hand sending G33 Xpo Ypos Zyour correction G33 L0 lists all positions and stored correction - copy the line with fixed z value to fix it.
-
This is a printer side problem and no host problem. Typical reasons are overheating of stepper drivers, cross talk to endstops from motors/heaters with end stop check always on, jerk/acceleration too high so you loose some steps and mechanical rea…
-
For now I think it is a firmware bug since we are doing the same as before just firmware stopped accepting this. Prusa developer already commented on the bug report so I expect they will fix it soon.