Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Bei windows steht alles unter C:\ProgramData\Repetier-Server\.....
  • Ok, mit dem Y Wert hätte sicher keiner gerechnet, aber ich so was schon gesehen. Der Fehler ist entweder im start oder end gcode. Die Mitte ist extrem unwahrscheinlich. So was passiert wenn z.b. der Server denkt eine Bewegung ist realtiv wenn absolu…
  • Sollte eigentlich kein Problem sein. Ich entwickle den Monitor sogar am mac. Hast du den echten port 3344 genutzt für die Verbindung? Im Grunde nutzt er http://ip:3344/printer/info um festzustellen ob ein Server erreichbar ist. Wichtig kein https ve…
  • Have no masaic to verify, but that sounds correct. It does not make a difference if you start a sd print or from server. Just do not change flow rate manually, but same is also not allowed for sd card print.
  • No, we need control over send data for our extended functions. That is why we decided to not use direct sd card print in server. Only if you print directly over server is possible and gets you all the benefits.
  • winscp geht unter windows auch super um die Dateien abzurufen und anzusehen. User ist pi und Passwort raspberry wenn du ihn nicht geändert hast.
  • Depends on the problem you have. If it keeps connected and just communication stops also host tries to send after timeout, then communication stack is corrupted somewhere. Nothing we can solve on our software side. You can try different usb cables a…
  • You need to log and read full log for errors. Then you see why it happens. If it is communication errors, e.g. "ok" being received as "o" or "k" which happens for some more frequent then it should you should try different baud rates or usb cables. 1…
  • Ja Fehler war nicht sehr lange her. Sollte im nächsten Update (kommt bald) behoben sein.
  • Im speicherverzeichnis /var/lib/Repetier-Server/printer/Prusa_Mini/models/ (druckername anpassen) stehen zu jedem G-Code auch .gin. Am Ende siehst du: radius: 178.53640747070312 radiusMove: 0 slicer: PrusaSlicer totalFilament: 91…
  • Try pressing reset button when it does not start at first power. I know this behaviour from some china Due clones having a wrong capacitor that causes the due to crash and hang on first power up. After reset (maybe just from host connect as it reset…
  • Wie viele Drucker und welche Server-Version?  Da war eine Version wo der Button leider nicht funktionierte.
  • Brauch man den proxy nur um ins internet zu kommen aber nicht fürs intranet? In dem Fall würde ich zweckt Aktivierung kurz mit einem Handy als hotspot verbinden und aktivieren und wieder zurück aufs Firmennetz. Der Server fragt alles ohne Proxy ab. …
  • It is there in 1.0.3. File commands.cpp line 2438 so please recheck. And then check your configuration if you have defined it twice somehow that it is 0. You can also modify the code to get a definitive error message  #if FEATURE_SERVO #error Serv…
  • Nein das geht nicht. Das ist ja warum wir den Monitor entwickelt haben und weiter entwickeln.
  • With #define RFSERIAL Serial#define BLUETOOTH_SERIAL 101 firmware should be able to connect to both ports, even at same time :-) Just do not print 2 different objects same time. But guess restarting and adding block by block would be best idea to s…
  • Ich kenn mich mit dem Cura nicht so aus. Was soll den Bei Druckkopfeinstellungen -10, -20 - 10, 10 bedeuten? Ich hätte da 0,0 - 210, 210 eingetragen. MAXZ:4811;Das scheint mir auch etwas hoch zu sein. Keine Ahnung wo der Wert her kommt, du hast ja Z…
  • You need one tool but you do not need to use the tool. You can add a laser with only a fake output for example. But since it is about a fdm/cnc/laser firmware no tool makes no sense and adds extra cost of testing, also often tests are already there.…
  • I did not mean that you should add it. It should already be there - I meant more to check if it is there. If not question arises which firmware version you are using that it is not there.
  • Stuttering in curves is in deed a problem normally if object is too fine sliced for communication speed. On a pi you can normally send around 300 commands per second if ping pong is disabled and buffer allows at least 2 lines in parallel.
  • First try EEPROM_MODE 0 instead. Sometimes eeprom problems prevent starting. Can be the values cause problem (change eeprom mode then to force reinit) or problems with I2C communication which is blocking. Also maybe reduce number of axis. Maximum u…
  • Geschwindigkeit wurde mit RETRACTION_SPEED und RETRACTION_UNDO_SPEED explizit vorgegeben. Schrittverluste sind hier nicht kritisch, aber muss man halt abwägen - langsames folgen oder chance auf Verluste wenn er das Ende erreicht. Das ausschalten pa…
  • Es hilft nicht im Bett -10 einzutragen wenn der gesamte erreichbare Bereich auf 0 begrenzt ist. Ich hab bei meinem Anycubic xy sogar nur 0-210 auf beiden Achsen und das Problem existiert nicht. Wichtig ist wo der Slicer sich hin bewegt. Das must du …
  • The TCP connection works identical to serial communication with the difference to stream over TCP instead of serial. So as long as the port maps bidirectionally to the serial /tmp/printer use any solution you like. Don't know ser2net but sounds like…
  • Yes, that would be correct. If you look into commands.cpp you should see something like this: #if FEATURE_SERVO case 340: // M340 if (com->hasP() && com->P < 4 && com->P >= 0) { ENSURE_POWER …
  • M340 controls a servo. If you get that message you have no servo support compiled in firmware.
  • Server just sends the data. Not sure which "ripples" you mean. There are many reasons to get things like ripples and they can also just depend on printer and speed or sliced result. What is important from server side is that you get no empty move bu…
  • I have never seen a message "Check API" and even just searched host sources and it does not contain that message. So I wonder who is making the popup and where the content comes from. Maybe if you can show the complete message I can make sense out o…
  • File gets added where it belongs in sorted order. That function does not now why it was added or if something was added. There is just an event that files might have changed and it gets reloaded from server. This even happens if you upload it in ano…
  • Your controller has name CONTROLLER_REPRAPDISCOUNT_GLCD so searching in sources for that you see where pins get defined. Assuming latest 1.0.4dev you see in DisplayList.h line 42 #if (FEATURE_CONTROLLER == CONTROLLER_SMARTRAMPS) || (FEATURE_CONTROL…