Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Good that it is only the power supply. Also timing to become defect was quite bad and confusing. Or it is the problem with power control on USB-C which the Pi 4 in first revision has. Not sure exactly what it was but know that this made not all USB …
-
Slicer settings are stored in files. CuraEngine in workdirectory/CuraEngine, Slic3r and PrusaEngine in HOME/AppData/Roaming/Slic3r and Slic3rPE Host settings are only stored in registry: HKCU/Software/repetier and can be copied with regedit.exe
-
Why not just write a gcode script and run it from sd card or host software if you need such a test. Such a test might be useful during development but on a working printer is is not required.
-
For testing if pi is still alive I'd use a regular raspbian. We have disabled most output. At startup I only see a blinking cursor, then a black screen and finally the touch screen surface. On regular image you see it booting. But even a black scree…
-
Since reflashing does not help also it worked on first run a defect is more likely. Hopefully just the sd card as it is cheaper. If you have also an older pi you can also put the sd card into that one. Also please always shut down the pi manually b…
-
Guess it is still there. Best solution would be to use repetier-server for sending gcodes directly. It is more stable, in active development and I'm quite sure it does not send checksum to marlin printers for the known problem some older firmwares h…
-
You are using pin 49 for some function which does not exist in your case. I think that is sd card detect pin. As it is not the default controller for melzi there is no valid pin definition in DisplayList.h (ui.h in older firmware). Search the case f…
-
You definitively want ALWAYS_CHECK_ENDSTOPS 0 so they are only tested during homing. Then regular moves do not trigger a stop even if it is high.
-
When you reflashed sd card did it boot then and then not again or is it completely dead since that first reboot? Normally a fresh sd card should at least work as in first boot if it is not defect. You can verify image after writing to see if it is c…
-
You could use home axis if it is in homing direction. Otherwise you need good programming skills. Menu ist a fat data structure that you need to edit (uimenu.h) to include a new action that you also have to write in the actions command in ui.cpp. Un…
-
You can not change the folder name, but with linux you can always a link to point it to a different location. So link the timelapse folder to that network share and it would work.
-
Uuh yes, back emf is not good. If you have a board with stepper sockets - watterott has adapter sockets with diodes to prevent back emf. Guess with a CNC you also have bigger motors the so the problem it self is also bigger.
-
For fans that might be useful since some slicers add many change commands depedning on layer time, but it might be useful sometimes. Bed temperature is normally constant and not that important. For extruders I'm not sure. There are 2 cases - in one …
-
Filament cooling fan should not have a big impact on extruder cooling and hence require no different PID values. If it really makes a big difference it is constructed wrong I'd say. Apart from this, it would be more part of the firmware to control P…
-
You must add v4l2-ctl to the sudoer list for user repetierserver to be allowed to do that. Easier/better is to add /home/pi/Webcam.sh to sudoer list and then call v4l2-ctl without sudo instead since script is already run as root. That execute it as …
-
Super, dann werde ich das fürs update übernehmen. 1.x ist nicht mehr in Entwicklung, nur noch bugfixes und ganz wichtige Sachen. 2.x ist die Hauptentwicklung.
-
Ok, das ist schon mal ein Hinweis und erklärt warum es bisher nicht aufgefallen ist. Idealerweise sollte z offset 0 sein, weil nur dann der ditto modus zum Drucken von 2 Teilen gleichzeitig sinnvoll genutzt werden kann. Dann gibt es noch all diejen…
-
ext1 MUSS ein negativer wert sein. Das ist der linke extruder und die Park position ist ja links von X=0. Hier wird offset etwas anders interpretiert als bei normalen Druckern wo die offsets einen frei definierbaren Punkt entsprechen.
-
Our homepage has some (also older) information about firmware configuration. Plus the help provided in the config tool or in github sources you would find a configuration.h with more comments.
-
Hab grad die Konfiguartion angesehen und frage mich warum es überhaupt so weit funktioniert. Beide Extruder haben keinen X offset, was aber zwingend nötig ist. Das ist jeweils der abstand park position - x=0. Beim linken Extruder ist das negativ bei…
-
No API function has been removed, only new added. Also the stateList command you are searching has changed in response - now heatedBeds and heatedChambers are arrays to support multiple of them in future.
-
We have it in combination for printing over Repetier-Server but not for sd print.
-
Ok, guys, we now have a prusa mini thank to Prusa customer service they send it earlier. I'm currently on my second test print but no problems so far. Only problem was a crash of display it self which seems due to having the web page of printer open…
-
After some googling I found this saying chromium relies on package manager and does no autoupdate: https://www.chromium.org/administrators/turning-off-auto-updates But not updating seems then not to not show available version. On https://www.chromi…
-
Sd card corrupts are always a pain as they have the strangest side effects. But in the end you should recreate the image when an update helped. It just means the "bad" structure is now not used any more but new files can make them reappear somewhere…
-
With connecting to printer host normally resets the board so it also resets position. That is expected behaviour. Do not disconnect or reconnect during a print form sd card.
-
Yes, it was a bit unexpected that you suddenly need to stop a timer you never started. But will leave it as safety and for users with broken version.
-
Graphs are at several positions. Regular gui has one in home screen. More exact in Control->Temperature symbol right to filament change icon. In touchscreen GUI it is in "Temp. Graph".
-
Hope you meant for Repetier-Server as I found it there in cost calculation. Fixed for next release. Thanks.
-
G92 is just setting an offset for coordinates. The question is here which firmware you are running and how you can change the Z with the probe in that case. This differs from firmware to firmware and is independent from host. Moreover firmware could…