Repetier

About

Username
Repetier
Joined
Visits
2,089
Last Active
Roles
Administrator

Comments

  • Alle server Daten werden unter /var/lib/Repetier-Server abgelegt. Es gibt noch ein paar Einstellungen unter /usr/local/Repetier-Setup für webcam Zuordnung und ein paar andere Sachen.
  • Please enable logging in printer context menu and start a print where it works at the beginning. Please also note at which time the temperature does not work any more. Server extracts temperature from temperature response which ideally contains curr…
  • With serial monitor stopping as well after 18 commands or so I guess the firmware has a problem. I'm not familiar enough with smoothie firmware, but I would ask in their forum maybe if that is a known problem. Maybe it just a configuration issue in …
  • Whining sound are lost steps normally. Since other moves work you should try reducing z home and z move feedrate until it works. With 2 Motors on 1 driver you only have half of current/force. You can split it on 2 drivers using the mirror driver con…
  • M340 only sets servo timing which you use to set BLtouch mode. Signal with M119 will always be L because the signal only stays for 100ms on H and you are not fast enough when you trigger it. More important is if G30 stops going down when it triggers…
    in BLTouch Comment by Repetier May 2020
  • Yes you need #define NO_TIMEOUTS 1000 // Milliseconds #define ADVANCED_OK and the busy lines you found are already correct in your example.
  • > Beim Verbinden mit dem Pi4 Resetet er und dannfolgt im Laufband zeile für Zeile ein ausgefülltes Kästchen und füllt die Zeilen.  Das ist verwirrend. Also ohne usb erscheint da was sinnvolles und über usb nur komische kästchen? In dem Fall würde…
  • sudo nano /etc/sysctl.conf Vorletzte Zeile: net.ipv6.conf.all.disable_ipv6 = 1aufnet.ipv6.conf.all.disable_ipv6 = 0ändern und rebooten. Hat bei meinem kleinen Test jedenfalls geklappt.
  • Homing makes only really sense when you enabled the printer and position is unknown. Maybe xy when you changed filament and there is a chance you moved position. In all other cases a move to the correct position is faster. Especially for stop/end of…
  • Man kan Marlin wohl auch so konfigurieren das er die // action:  Befehle sendet - bin nur nicht sicher ob das erst in V2 drin ist. M600 erkennt der server und sollte auch mit Marlin 1.x klappen. Und wenn du schon neu aufspielst aktiviere in config_a…
  • Your coordinate system looks strangely rotated. X is left/right, y is front/back and z is up/down with z min where endstop hits bed.  You did not tell what the problem is. Use M119 to see first if all endstops trigger and if they are named correctly…
  • Ok I see you have a smoothie board/firmware and communication is working. What is strange is the 0 returned for every M105 - should respond with a temperature information unless you have checked in printer settings ->Printer->Remove temperatur…
  • No restart required. Also no reupload. Maybe you need also to increase bed size to -8. If you check the folder where server stores gcodes there is a .gin file for every gcode. There you can see what server thinks in which area you are moving and ext…
  • Ok, that is defect at the moment and fixed in next release.
  • Mainly RADDS boards or derivatives you can not buy. They have an extra eeprom which I find important and work well and are good extendable. If you do not need V1 and have some programming skills RUMBA32 is a nice board. Bus as said requires V2 firmw…
  • Print Settings->Multiple Extruder->ooze prevention->Enable must be disabled in Slic3r.
    in Ooze shield Comment by Repetier May 2020
  • Will test as well next time I use V1 firmware. Just to be sure also I'm quite sure I tested it. But you never know about unexpected bugs.
  • You need a direct drive extruder - with bowden the spring effect is so big that extruders can not really follow in time. Linear value is normally between 40-80 depending length drivenozzle and material. 32 bit might allow faster speeds or more steps…
  • Die sind sortiert aber genau anders herum. Neueste oben macht aber mehr sinn. Werd die Reihenfolge fürs update anpassen.
  • Your x home position is -8 while x min allowed is 0. So that is outside printable area. Set x min to -8 and it should work. What you define in the manual control is where you can move - this can also be outside bed. In bed you define where extrusion…
  • While multiple driven z axis is a common thing - which is why we have the option - it is also common that they have same steps per mm. In V1 there is only mirroring of step signals. V2 firmware has a more complex solution and allows a tree of driver…
  • They are complete for version 1.5 - higher versions of curaengine are not compatible to the 1.5 configuration system and currently not supported. Please use PrusaSlicer if you need a recent slicer that is up to date.
  • 21:23:45.803: T:223.75 /220 B:50.33 /50 B@:38 @:13 ist die Meldung der Temperaturen an server. 21:40:40.793: wait (2) zeigt das da 2 Sekunden pause war. Mit log meinte ich aktivieren von log im Druckermenu "Logs". Aber mit dem wait im Druck ist eind…
  • You need just the simple stepper driver. The config has at the beginning // define RAPS128_XY Uncomment this so it uses the definition for raps driver. Or just remove the #ifdef RAPS128_XY else part in configuration_io. RAPS128 have enable signal in…
  • There is no app for remote access from us. You need to forward connection to www. Read this https://www.repetier-server.com/knowledgebase/access-server-from-internet/ for a list of possibilities depending on your situation.
  • Die Einstellungen sind nicht exportierbar. Das sind unterschieldiche Formate.
  • Was ack enabled in log? I miss the firmware answers of "ok" here. When commands get executed the baud rate would be correct. Make sure protocol is automatic or ascii, not binary assuming it is not repetier-firmware. If you get no "ok" try changing …
  • If you want the improved webcam support you can configure it like this: https://www.repetier-server.com/setting-webcam-repetier-server-linux/ Or use any other solution and enter image/mjpg url by hand.
  • Only for dual x printers if you activate lazy mode. Otherwise it will change offsets at activation.
  • In extruder.cpp  line 1110 you see #if HAVE_HEATED_BED writeInt(EPR_BED_PREHEAT_TEMP, Com::tEPRPreheatBedTemp); writeByte(EPR_BED_HEAT_MANAGER, Com::tEPRBedHeatManager); writeByte(EPR_BED_DRIVE_MAX, Com::tEPRBedPIDDriveMax); writeByte(EPR_BED_DR…