Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Not very elegant to kill server:-) We have a web api see docs on our homepage. You can use that with curl to tell server to kill running job. That makes server survive the stop.
-
Bekanntes Problem das mit dem nächsten Update behoben wird. Ursache ist das die neue Creatilty Firmware ein neues unbekanntes Format für Temperaturausgabe verwendet. Daher versteht kein host ohne fix die Ausgaben. Keine Ahnung warum die das geänder…
-
If you send iwconfig, what is the response (linux console)? Also what is response on sudo ifconfig | grep wlan0 the answer is used to determine if you have wlan. Maybe it appears as wlan1 instead, then you need to change WLAN in /usr/local/Repetier…
-
What board does the printer use? There are known issues with malayan boards needing a special DRT/RTS setting which you can not in host. We plan to add these settings to next release. Until then you can use Repetier-Server as printing daemon with re…
-
Server is written in C++ for improved speed, but that unfortunately prevents adding a hotfix to this problem. But we are aware of the problem and hopefully have it fixed correctly for next update coming quite soon. That said, the printer will stil…
-
It is planned to allow host do just that, but current version does not know about projects jet.
-
1. There is already z-hop. See printer configuration->extruder. It uses the retraction and z hop settings stored there. 2. That is difficult since server has an own definition of layer. A layer starts when you extruder at a different z height. Th…
-
The frontend establishes a websocket connection to server. Everytime the socket gets closed the connection lost message appears. As it states it will retry automatically until it is connected again. Typical reasons to appear is server died or intern…
-
There is always a minimum jerk depending on acceleration. This is required for numerical stability, but that is normally no issue. Bang is not really what you should hear. You always have 90° corners and speed wise I expect more or less the same at …
-
The image is what you want. If you click the button you see the download page including installation instructions: https://www.repetier-server.com/download-images/ The image works with all Pis so it uses armel, but if you like you can use the image…
-
How does homing work? Direction and sensor? For Y you need to reduce force to y motor or increase current to y motor if it is not already at limit. Don't want driver too get hot (which also makes you looks steps). You can reduce acceleration (800-1…
-
You need a square in your circle to measure. G28 G1 Z10 G30 P1 Now probe is active. Move to the edges to find your limits. Check log for message about invalid position. If not invalid that is reachable with probe. If you get invalid coordinates red…
-
This is not ffmpeg related. We query the jpg url after sending 24 times M400 to be sure printer has stopped moving. Then start making snapshot in separate thread and send firmware to wait 700ms G4 P700. Can you verify if both commands do what is exp…
-
Zumindest zeigt es das ich nicht ganz verrückt bin. Ping Pong sollte allerdings aus sein, dann kommuniziert er schneller mit weniger aussetzern. Puffer sollte 127 byte sein, außer wenn das zu Kommunikationsfehlern führt. Zuerst ist der Fehler beim …
-
Name of pins do not determine function. Only if you have confiured you have z max endstop on z max pin something would happen. Checking M119 should show that you have no z max endstop.
-
IF you use snapshot position, the position must be selected outside the print to prevent the melting. For ultimaker it is not really required as object stays where it is. Prusa like printers with moving y axis are more the target of the feature. Or …
-
In which direction does printer home? If it homes to z min (bed to nozzle) you need to raise the z min endstop physically to adjust for the difference. If it home z max go to eeprom and reduce z length by the extra length. Offsets in slicer are su…
-
In your variant the quotes are missing! sudo makes you root so you should have all permissions. You can also edit the file and add the line manually sudo nano /etc/sudoers.d/repetierserver-perms and add line repetierserver ALL=NOPASSWD: /usr/local/R…
-
There is no option for this. You can put it in start script if you want it always active. If you have no display ignore the message. Test seems not to check that case. If you select a display you could remove languages to stop the message and then …
-
Use shift+ left button to move. No middle button needed. On tablet I guess also not an option. Guess moving button is required for tablets. Put it on my next release list.
-
Why is reading sd card a problem? Remove it if you do not want it. Controller automatically activates sd card as it is part of it, removing is a bit complicated.
-
Will think about it. As german user I understand it as well. American format i snot what I'm used to have.
-
Have you defined in printer configuration a retract to help preventing ooze. They are defined in general extruder parameter and reused by timelapse to reduce ooze. One problem is in deed sync of moves and making a snapshot. We wait for position tri…
-
Hab jetzt an einem Pi 3 + Display ein objekt mit vielen kurven getestet und hatte keine Hänger. Einloggen, htop, gcode hochladen, bilder rendern - hat ihn nicht gestört. pi@FelixWhite:~ $ lsb_release -a No LSB modules are available…
-
You send it in manual control and see result in log. Disable easy mode to be allowed to do so.
-
No need to use zmax for z probe. Well pin names are just names so it only matters for what you use it. You cal also put ymax pin on zmax endstop if you like. Important is when you have zmax homing that you have no zmin endstop defined. You only defi…
-
Urlencode is good, but only encode the data part, e.g. {id:1} becomes %7Bid%3A1%7D There is no job 1 to start. In fact normally there are no jobs at all. Jobs are files in waiting queue, not models. http://demo.repetier-server.com:4001/printer/api/…
-
1) did not understand why you can not home. In 1.0.x there is a target position check to avoid illegal moves. At startup z=0 is assumed which is also lower limit, so you can not move below. G1 S1 would disable target position check. 2) G1 S1 as well…
-
You simply set FEATURE_CONTROLLER 11 or if you used config tool just select the display type and get the new configuration.h for compilation. After recompile it should show up if you used a board with support for that board. But it is the most widel…
-
Ok, found reason. We have a new script for screensaver and that is not in sudoers list. Over ssh send sudo echo "repetierserver ALL=NOPASSWD: /usr/local/Repetier-Setup/bin/screensaver" >> /etc/sudoers.d/repetierserver-perms to fix. Then set t…