Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Message says first move triggered end stop then it went back #define ENDSTOP_A_BACK_MOVE 4 expected end stop to untrigger, but that did not happen. Send M111 S70 before homing and it should show end stop changes in console as well. Normally 4mm is e…
-
In /var/lib/Repetier-Server/scripts/ is a script hardware_info that produces the content of the flash menu. You can use this to at least put temperature/humidity into the server gui. This will not produce a graph. Temperature graphs are only for las…
-
Depends on what you mean with run in background. Scripts get send and interface keeps useable so you can directly switch to next printer. Also especially with filament change manual action is normally required-
-
No I mean network wise. E.g. if you ping the ip of both you should get a response from both.
-
Filament change is quite different for different printers. That is why the filament change routine also allows to add extra gcode to be run on insert/remove - that way it can be optimized. You can also write own scripts that are optimized. These a…
-
Ohne Kontext kann das so ziemlich alles sein. Am besten mit ethernet Kabel verbinden und per ssh einloggen und tail -f /var/log/syslog eingeben (ctrl+C zum beenden). Dann siehst du alles was linux loggt. Dann versuchen die Verbindung herzustellen u…
-
Erst mal groß kleinschreibung ist wichtig. Der Pause-Befehl ist ;@pause also klein geschrieben. @nosize/@size machen nicht was du denkst. Sie sind dazu da das der Teil nicht in die abmessungen für die Ansicht des 3d Objekts aufgenommen werden. Sons…
-
Loading/unloading filament is different from printer to printer, but what always works is heat extruder and use in manual controls the extruder move buttons. Unload = unretract until motor has no grip, then pull the rest by hand. Loading is insert …
-
Hour wrong happens if time zone is not set. Pi has no battery buffered clock so it needs internet connection to update time to be correct. In time tab there is a bug that it presents wrong day of month (0-6) - will be fixed in 1.0.5. This has no ef…
-
That is normally not the case, but it can happen e.g. if stepper frequency is near resonance frequency of printer it vibrates much more. Or steppers have problems holding microstep positions which is more prominent on slower speeds while faster spee…
-
It depends. They must be both reachable from where the monitor runs. If there is no route it can not connect, but same wifi network is not necessary.
-
Das ganze um zum Duet Server zu wechseln? Da hab ich eine gute nachricht. Ab 1.0.5 kannst du den Link unter externe Links ablegen mit eigenem icon sogar und innerhalb unseres UI anzeigen. Der Rahmen links und oben bleiben, so kommst du auch jederzei…
-
Do gibst exact das ein: sudo -i echo "# TEMP KLIPPER FIX" >> /etc/sysctl.confecho "s.protected_symlinks=0" >> /etc/sysctl.conf reboot danach sollte es gehen.
-
So what are all your A axis settings and what does console look like when you do a failed home compared to working A home? Need more information to see what is wrong.
-
When it already fails after first move than the A axis length is set too low. As a test run from close end stop (like probably your second try) and once move to far most distance. Check A axis min/max value. BTW: Why do you have A axis? Is it a dua…
-
echo "# TEMP KLIPPER FIX" >> /etc/sysctl.conf echo "s.protected_symlinks=0" >> /etc/sysctl.confsollte machen das es für alle geht. Problem ist eigentlich kein repetier Problem, aber der Klipper weigert sich das zu beheben. Er sagt man ka…
-
Dann erzeug die Datei von hand. Den Inhalt hab ich ja schon gepostet. Wenn du unser image als referenz nimmst sollte es ohnehin kein Problem sein. Was auch helfen würde ist echo "# TEMP KLIPPER FIX" >> /etc/sysctl.conf echo "s.protected_sym…
-
You can store projects in an other server installation instance e.g. on your pc. The rest is fixed to be at /var/lib/Repetier-Server You can use any Linux trick to move it somewhere e.g. on a bigger driver mounted to pi. Or you copy sd card to a bi…
-
Try sending M155 S1 I read in release notes that it now supports autoreport temperature. That command should get it started. Will test asap on my prusa when I update.
-
Wie ich schon sagt /etc/defaults war ein Fehler in der Anleitung. Der Ordner ist /etc/default Bei mir steht da dies drin: pi@Felix:~ $ cat /etc/default/klipper# Configuration for /etc/init.d/klipper KLIPPY_USER=pi KLIPPY_EXEC=/home/pi/klippy-env/bin…
-
You probably have not defined a retest distance so end stop does not untrigger or distance was too low. With safe homing enabled (default) this causes exactly that error.
-
#define ENDSTOP_Z_BACK_ON_HOME 0 #define Z_HOME_DIR -1 That is for z min homing! Hope this is not what you used for z max homing test. What was written in console on the test? That is where the information is. Since sequence worked I think the pro…
-
Linux bindet alle geräte unter /dev ein. Die sind nur sichtbar wenn linux läuft, daher ja du musst per ssh einloggen. ls /dev zeigt dir alle, sind aber eine menge. Im server siehst du die aber auch in der Druckerkonfiguration im port Dropdown. Da st…
-
I see prusa has ;LAYER_CHANGE as comment for layer changes. I think I will add in one of the next releases (not next, we are in finishing stage already) to use slicer comments when available to mark layer changes und use our system as fallback. That…
-
Does your A axis have end stops? What happened? Did it start moving, where did it stop ... What is in the console? If you have safe homing enabled (default) you need to reverse enough to untrigger end stop or homing will be failed.
-
Did you remove the comment # sign for the options you tried? Make sure to only uncomment one option for rotation to get no double rotation.
-
Ja siehe https://www.repetier-server.com/knowledgebase/klipper/ alternative Lösung. Hier wird klipper als repetierserver gestartet und dadurch haben wir auch kein rechteproblem. Nach dem ändern klipper neu starten oder rebooten. Zur kontrolle ls -l…
-
Technically it is not possible that way. I think for this we need to make 2 constraints: 1. Only projects of matching server or we have copies all over 2. All Projects must have a directory also empty for import. 3. New directories become ALWAYS pro…
-
So main question is why the reset. Does G30 work or does it reset as well? If it works you need to track down it to the code where it happens. I have a printer doing it this way and it works and I have no idea why it gets stuck, In printer.cpp homeA…
-
The main problem is that server reads the stream from webcam software and splits it into n streams for clients while working as a proxy. For timelapse it also needs a way to get jpg images. This must run in C/C++ inside server plus clients need to a…