Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
What does the manual start say? Which windows version are you using? I have a current windows 10 as test system.
-
Just retried by downgrading and running autoupdate and it worked. Can you please retry. Did the installation work without problems and only afterwards the server did not run? In that case please try starting it manually to see where it fails in you…
-
Lats printed is nothing we store. Actually when you print we make a copy if it is from an existing and print the copy. There is also the option to use direct print without intermediate storage.Only thing is when a print finishes we look if it exists…
-
Yes look sin deed as I messed it up. Meant to fix it in that release but must somehow added a bug after testing the repaired version. Will be fixed in next update then.
-
Each extruder can only have one heater and temp sensor. So with current datastructures I don't see 2 heaters for 1 extruder. You also need then 2 output temperatures for one extruder and that will no host understand.
-
script I guess. He deleted old file to recreate it, so he lost the execute bit flag in permissions.
-
Wenn alles weg ist, ist es vermutlich keine valide xml Datei mehr. Sieh mal in /var/lib/Repetier-Server/logs/server.log nach ob da was drin steht. Auch mal die extcommands.xml hier hochladen https://www.xmlvalidation.com/?L=2 und prüfen lassen. …
-
Ok neues release wo zumindest dieser Fehler weg ist ist raus:-) Sollte er irgendwann noch mal so einen Hänger haben ruhig wieder backlog schicken. Aber zumindest ist derzeit kein anderer bekannt, was mich beruhigt:-)
-
Sorry, lack of time prevents that at the moment. It is on todo but being a complex extension I need some time before I can start it.
-
Yes, you need to specify ip and port. You also need to activate the telnet port in configuration or it will not exist. In the config tool you find it in the Network tab.
-
Ok looks they are outdated a bit to new macros. Will update them when I test my delta again. You find the current variables required any time in the documentation which I keep up to date with each update. HEAT_MANAGER_PID(HeaterExtruder1, 'E', 0, T…
-
If you check the forum you will already several smart plug solutions that work. Basically you need a linux script that when run turns it on/off. If you have that you can do what is described in manual in advanced settings for extcommands.xml to add…
-
Mac host only supports eeprom for repetier-firmware which is generic format. Marlin solution is quite complex and changes over time which is why it is not supported there. On mac you can use our Repetier-Server instead that also supports eeprom for …
-
From the map you have distorions. Don't see from G32 the correction which should be added to that. Your config does not contain the settings for distortion correction, these are /* DISTORTION_CORRECTION compensates the distortion caused by mechanic…
-
Arghh. You did use a windows editor and did not change line ending to unix format! Not you #/bin/bash ends with cr lf which does not work. You need the file in unix text format anding only with lf. Best is to delete the file and create it with nano…
-
With fast corexy you have to be careful to reduce segments per second to fit the homing move in one list of subsegments. This depends on homing speed and 2 * x length. So you need 2 * x_length/homing_speed_in_mmps seconds. If you have 10 subsegment…
-
All you need is sudo apt-get install wiringpi to install it globally like described here: http://wiringpi.com/download-and-install/ No need to build from sources. After that it is installed in /usr/bin and available for all users.
-
But where is gpio installed? Therefore type gpio If it is in your home directory the script will not find it. The strange thing is when I test a command that does not exist I get: pi@Felix:~ $ sudo -u repetierserver ./test.shdd s…
-
Where is the gpio command stored? Currently I think the script is run and then gpio is the command that is not been found from the error message. type gpio should show it somewhere reachable in path variable since you did not enter full path to th…
-
You mean running sudo -u repetierserver /var/lib/Repetier-Server/scripts/relay_01_on.sh shows the error message? In that case does /var/lib/Repetier-Server/scripts/relay_01_on.sh work? If it works as pi then the path is not readable by repetierse…
-
Super. Ich konnte die Ursache mit dem Backlog klar bestimmen und für das nächste Update (kommt in kürze) beheben. Es ist ein klassisches dead lock und kann passieren 5000 Zeilen vor dem Ende des Drucks. Kommt hier echt aufs timing an, weshalb es auc…
-
You missunderstood me. #!/bin/bash should be first line in your shell scripts to mark them to be executed with bash. In extcommands it should be /var/lib/Repetier-Server/scripts/relay_01_on.sh
-
Die Meldung kommt von der Druckerfirmware, kann daher nicht sagen was die sagen will. Log ist offenbar nicht vollständig ansonsten verstehe ich das Resend: 28 nicht. Die "wait" kommen mir komisch vor. Normalerweise heist wait ja "hab nichts zu tun, …
-
Marlin 2 sollte kein Problem sein. Board ist dem server soweit egal wenn der serielle Treiber erkannt wird von linux. Bei einigen Boards ist es aber wichtig wie DTR/RTS gesetzt sind. Bei falschem Pegel können die z.b. Senden verweigern. Daher kann m…
-
You can easily make your own config. Main parameter is bed position size and in host some speeds and accelerations. You can read defaults in eeprom setting normally. If they are wrong it is not that bad normally just wrong time computations.
-
DO not start with bash directly. For scripts just add as first line #!/bin/bash and linux knows that script needs to be started with bash. Then omit bash parameter. Then try running it as user repeteirserver sudo -u repetierserver /var/lib/Repetier…
-
Just as I thought. PROBE is the command so in terminal you send #PROBE instead and all are happy.
-
Does the interface still load at start but fail to open websocket connection? Then it might have been locked for unknown reason. Please finish your prints and then follow https://www.repetier-server.com/knowledgebase/debugging-crashes-hangs-on-linu…
-
Scripts get executed as user repetierserver from Server while you are testing as user pi. Reason is normally that repetierserver is not allowed to execute that script. Copy it best to /var/lib/Repetier-Server/scripts and set permissions chmod 755 fi…
-
That is more a Klipper question and should be in klipper documentation which command works. Please note that non gcode commands from klipper require the line starting with # to indicate that it needs to be send 1:1. Klipper uses non gcode commands f…