Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
I found this https://reprap.org/wiki/MKS_MINI_12864 There they say like RRD Graphic Controller and we already have that with #elif MOTHERBOARD == 80 // Rumba has different pins as RAMPS! #undef BEEPER_PIN #define BEEPER_PIN …
-
That plugin is not from us. But as far as I understand it, it is only meant to send gcode to print queue not model queue which is to store them permanently. The difference is only marginal (different target url) so if you ask the author on github he…
-
No, the modes exclude each others. There is also only one memory slot to store a intensity. For printing it is the fan and for laser the laser intensity for the move. One solution might be to hack the G0/G1 command to enable fan on extrusion moves …
-
You also need FEATURE_Z_PROBE but that is also needed for G32 which works. #if DISTORTION_CORRECTION case 33: { if(com->hasL()) { // G33 L0 - List distortion matrix Printer::distortion.showMatrix(); …
-
What is the error pattern. Wrong speed skipping some entries or just switching between 2 positions. In latter case one of the 2 encoder inputs is not giving signals. No contact or wrong pin configured might be a reason.
-
The LCD where you see the bed temperature is that from the server on display on pi or a native printer lcd? If you say gui which do you mean as we have 2 - for printer touchscreen or normal webbrowser front end. Did you configure in printer settin…
-
Die einzige Frag eist, ob die Firmware auf dem Board kompatibel zu einer unterstützten ist. Der Server sendet ja nur die Befehle zum Drucker. Wenn die also ohne Fehler ankommen ist alles ok. Dazu am besten in der Konsole schauen ob da auffälligkeite…
-
Did your echo create the file? # is a comment so not sure you entered it or not. You are not starting /bin/bash but you start /var/lib/Repetier-Server/database/turnOnPrinter.sh so that should be executable. echo "repetierserver ALL=NOPASSWD: /var/l…
-
No, it is part of the screensaver and that always enable just like windows screensaver always enables when activated. Of course you can disable it in screensaver page, but there are no conditions on when to do what.
-
And did you upgrade to 0.90.1 already? We at least tried to fix the prusa problem, but having no prusa we could not test.
-
What is the M105 response in console. You need to enable ACK to see it.
-
Ok, so selecting a RAMPS the error is correc. As you see there are only 2 extruder motor drivers. The third is therefore undefined and you also see it has only 3 thermistor inputs. The board is not prepared for 3 extruder natively, so no variables f…
-
Distortion map does not use additional analog inputs. And the error this time is about the enable pin of the third extruder not being defined. What board are you using? Does it have 3 extruder sockets?
-
G92 has no influence on what you can reach in host. Not reaching negative values in manual control is therefore the correct behaviour if that is what you tried. You can still send gcodes manually with any coordinate. But since you speak about z-pro…
-
After homing z do G1 Z1 G92 Z0.9 That tells firmware that at Z=1 it should assume it is at Z=0.9, so everything is printed 0.1mm higher. Adjust values to what you need.
-
So everything is working fine until you add additional components to the pi, right. First, the pi 3 has wlan on board so adding a wifi stick is not required. The other problem is that the pi is very power sensitive. It should be powered with a goo…
-
You M303 syntax uses a C10 - what should that be. Here syntax for newest firmware: - M303 P S X0 R C- Auto detect pid values. Use P for heated bed. X0 saves result in EEPROM. R is number of cycles. method 0 = classic, 1 = some …
-
Please be more precise. Have no idea where what goes wrong and what you have done. Does the normal gui work or take long and go black or does the pi have a display? If yes, what kind an dis x server working and properly configured? Which image? Ther…
-
Yes, exactly the above error. We try to release fixed version tomorrow if no new bug prevents it.
-
Make sure maxPid is 255 to allow full power at all. Also make sure driveMax is high enough and not limiting output again. I think one of these is just set to low which reduces the output power. In host/server you can see output power graphically and…
-
Ok, hab mir den code noch mal angesehen und eine Methode gefunden um deinen Fehler zu produzieren. Wenn ein Befehl länger als die Buffergröße der Firmware ist, kann genau das passieren. Ich denke aber auch das dies nicht wirklich der Fall ist. Aber…
-
So it is only an improvement. I have seen posts saying reduicng usb to version 1.1 also helps, but do not really like that idea. Pi already has only USB 2.0 for all causing some limits as it uses wlan also over usb. Did you already tried the powere…
-
Thanks. Yes, it turns out that firefox did not support that parameter. Have fixed it for next update.
-
The new way is now a different also the result is the same. Have changed the documentation. No DisplayIf you have no screen on your pi, you can disable the start of x server and chrome. This reduces CPU and RAM usage. Especially if you have sometim…
-
Not all boards have 4 thermistor inputs predefined (or have at all). Seems to be the case here. Just enter the analog number instead or analog channel for due. TEMP_3_PIN gets defined in pins.h in your boards section if it gets defined. Be aware tha…
-
It is already extendible, but that is quite hard as you need to compile the ui. I have some hope that plugins get possible in V2 when we switch to vue. That is much easier to hack.
-
You should have a look at the log here. One reason for such sounds is slow data transmission. This can happen if moves are too slow, communication is too slow or if you get lots of errors or if pc is slow so that graphic updates take too long. For l…
-
Try until mid july to publish a bugfix version.