Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • At startup cpu load is high, so that explains why you only get it at startup. Prusa Rambo in deed uses nearly no power, so no issue anyway. Guess when you render images it might come on again. But as long as it does not cause problems I would ignore…
  • Max. parallele befehle macht nur ohne ping pong sinn. Ein wert von 2 oder 3 ist ok bei Marlin. Aber das problem hat damit nichts zu tun. syslog wird jeden tag neu gestartet. Die vom Vortag heist dann syslog.0 in /var/log. Noch ältere syslog.2.gz si…
  • Aktuell ist version 1.2.0 - wenn es 1.1.12 ist und check updates das neue noch nicht anzeigt (kommt irgend wann) per ssh einloggen und "installLatestServer" eingeben das installiert neueste version auch ohne das check updates es schon sieht. Neues i…
  • Hast du server auf 1.2.0 aktualisiert? Da noch kein image mit 1.2.0 existiert (kommt noch) heist neue simage gleiche 1.1.2 version erst mal. In Konsole kann man gut markieren. Aktivier pause damit er nicht mehr wegen neuer Einträge springt dan geht…
  • On windows you need a printer driver so port appears. If that is the case can be seen in hardware manager. If a device appears as unknown device it is missing otherwise it appears under com ports and you see which com port it got - must not necessar…
  • Just to be clear - we only show the signals that linux produced as many problems come from power problems. That does not necessarily mean you have these problems. I have 2 pis with same message every now and then and they are absolutely stable none …
  • 1.2.0 ist raus mit schnellerer Fehlerkorrektur, aber  Connection closed by os during print ... trying reconnect for 10 seconds to continue ... bedeutet die Verbindung wurde komplett verloren. Kein hinweis das der Server das verursacht hat, also verm…
  • To print files must be copied to job queue and then started. So autostart means not just copy the file but also start printing it. There is the @autostart_next_job command that starts next file in job queue, but that makes only sense if your printer…
  • Neue version ist grade raus. Sollte es weiter nicht klappen mal in Konsole zeigen was der Drucker denn so sendet als Temperaturdaten. Jedenfalls haben wir das aktivieren des autoreport stabilisiert, was womöglich die ursache ist. Hilft  M155 S1 dami…
  • Possible, but not that way. Every file has an id and you need that. So first fetch gcodes with this: https://prgdoc.repetier-server.com/v1/docs/index.html#/en/web-api/websocket/jobs?id=list-g-code-models Then copy the file to job list with autostart…
  • So eine verlängerte Error liste kann du kurzen aussetzern führen. Darum haben wir viel Zeit in die optimierung gesteckt. In 1.1.2 die Lösung war aber noch nicht ganz so performant und problemlos in der korrektur wie wir wollten. Daher das update in …
  • Die Fehlerliste hier denke ich ist ein einziger Kommunikationsfehler mit Problemen beim reparieren. Die nächste version ist da etwas besser. Wenn du firmware mit buffer 256 byte compiliert hast ist es einfach Zufall. Passiert immer wieder mal. Wenn …
  • Technisch sehen wir keine Befehle die direkt übers display eingeben werden. Daher ändert sich darauf hin ncihts. Ein M114 würde die Position übertragen. Ausnahme sind temperaturen da die gesetzten Temperaturen normal in der Temperaturmeldung mit dri…
  • It depends on the age of repetier-firmware. Latest version have autoreport. Server detects this when M115 report Caps:AUTOREPORT_TEMP:1 or similar and then sends M155 S1 to enable it.  Server trie sport periodical, but when you deactivate printer it…
  • V2 uses visual studio code, something you might know as javascript programmer. Please have a look at https://github.com/repetier/Repetier-Firmware/tree/dev2 and the documentation mentioned in the readme. The sample config is a good start I guess as …
  • Are you connecting via server or host directly? When server is running and connected you can not connect with host directly, only with server connector. Also when oyu enable commands and ack in console, what does it show on connection attempts?
  • http://192.168.6.99:3344/printer/api?apikey=1234567-1234-1234-1234-123456789012&a=listPrinter&data={} would give you basic informations. Normally after /api you have /slugname but for listPrinter that is not necessary. See https://prgdoc.r…
  • Exactly. By design the gcode folder is for printing and I see no simple script solution to modify that. Project were never meant to print and actually what they do is copy the file to job folder or model folder to do the print.
  • We have a skr_mini_e3_v2_0 supported that uses the same chip at least.  How good are your programming skills? I can not test such a board even if I write the code as I do not have it. But I could fetch pinmap or more from marlin.  You should know …
  • TMC2208 are not supported in V1 firmware. You need to use Firmware V2 for this, but the list of supported boards is not that big here, so chances are high that it is currently supported. But I don't know which board is used. When I know I can say if…
  • The folder is not meant to be read by humans. It is internal data storage. Direct redirection is not possible. How would we know that uploading should not work any more? After all all uploads use same api so that would break the complete software an…
  • No that is not possible. Problem is you want to misuse something for something I do not understand. Why do you want to upload gcodes to klipper? I mean when server sends it you get all the nice things like time, progress, preview but not when print…
  • If you have pro version you can install Repetier-Server Monitor there we already have the checkbox solution.
  • Actutually this is explicitly forbidden for the case that a user is printing from sd card. As we don't see this we do not want to disable temperature and power of in that case. Starting with next release 1.2.0 you can write real gcode script. I too…
  • You can use projects for this. stored in /var/lib/Repetier-Server/projects/....  So make a project for klipper. G codes get stored in one folder and no extra files get created.
  • It does not matter if someone is logged in. Temperatures are queried all the time. Exception is if firmware supports autoreport temperature, then we just activate it and do not need to query every second.
  • They are in /var/lib/Repetier-Server/printer//models along with extra generated files needed by server. But do NEVER copy files there!!! Only use server upload function for adding/deleteing the files or server will not do what you expect.
  • Die aktuell beste Beschreibung ist Entwicklung aber schon hier zu finden: https://prgdoc.repetier-server.com/v1/docs/index.html#/
  • Nearly finished, so 1.2.0 will be available in a few days. Filament manage ris planned along with slicer for one of next bigger updates.
  • Dateien kann man nicht anhängen, must du pastebin oder dropbox oder ähnlichen service nutzen. Die gui fragt auch über api ab, ist ja auch nur eine webapp. Hier mal der Codeausschnitt wo es erzeugt wird. Am ende stehen die API namen aus den Feldern.…